more test message
This commit is contained in:
parent
05c25bd746
commit
684862de7d
@ -249,7 +249,7 @@ int Test_Save(char * errmsg)
|
|||||||
Load_PKM(&context);
|
Load_PKM(&context);
|
||||||
if (File_error != 0)
|
if (File_error != 0)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Failed to load reference 256 colors picture\n");
|
snprintf(errmsg, ERRMSG_LENGTH, "Failed to load reference 256 colors picture");
|
||||||
goto ret;
|
goto ret;
|
||||||
}
|
}
|
||||||
testpic256 = context.Surface;
|
testpic256 = context.Surface;
|
||||||
@ -260,7 +260,7 @@ int Test_Save(char * errmsg)
|
|||||||
Load_GIF(&context);
|
Load_GIF(&context);
|
||||||
if (File_error != 0)
|
if (File_error != 0)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Failed to load reference 16 colors picture\n");
|
snprintf(errmsg, ERRMSG_LENGTH, "Failed to load reference 16 colors picture");
|
||||||
goto ret;
|
goto ret;
|
||||||
}
|
}
|
||||||
testpic16 = context.Surface;
|
testpic16 = context.Surface;
|
||||||
@ -271,7 +271,7 @@ int Test_Save(char * errmsg)
|
|||||||
Load_GOS(&context);
|
Load_GOS(&context);
|
||||||
if (File_error != 0)
|
if (File_error != 0)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Failed to load reference CPC overscan mode 0 picture\n");
|
snprintf(errmsg, ERRMSG_LENGTH, "Failed to load reference CPC overscan mode 0 picture");
|
||||||
goto ret;
|
goto ret;
|
||||||
}
|
}
|
||||||
testpiccpco = context.Surface;
|
testpiccpco = context.Surface;
|
||||||
@ -412,7 +412,7 @@ int Test_C64_Formats(char * errmsg)
|
|||||||
Load_C64(&context);
|
Load_C64(&context);
|
||||||
if (File_error != 0)
|
if (File_error != 0)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Failed to load reference multicolors picture\n");
|
snprintf(errmsg, ERRMSG_LENGTH, "Failed to load reference multicolor picture");
|
||||||
goto ret;
|
goto ret;
|
||||||
}
|
}
|
||||||
testpicmulti = context.Surface;
|
testpicmulti = context.Surface;
|
||||||
@ -422,7 +422,7 @@ int Test_C64_Formats(char * errmsg)
|
|||||||
Load_C64(&context);
|
Load_C64(&context);
|
||||||
if (File_error != 0)
|
if (File_error != 0)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Failed to load reference hires picture\n");
|
snprintf(errmsg, ERRMSG_LENGTH, "Failed to load reference hires picture");
|
||||||
goto ret;
|
goto ret;
|
||||||
}
|
}
|
||||||
testpichires = context.Surface;
|
testpichires = context.Surface;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user