Commit c221c1ae authored by Sam Lantinga's avatar Sam Lantinga

*** empty log message ***

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40483
parent 513d7b33
...@@ -119,7 +119,7 @@ int RunModeTests(SDL_Surface *screen) ...@@ -119,7 +119,7 @@ int RunModeTests(SDL_Surface *screen)
bmp = SDL_LoadBMP("sample.bmp"); bmp = SDL_LoadBMP("sample.bmp");
if ( ! bmp ) { if ( ! bmp ) {
printf("Couldn't load sample.bmp: %s\n", SDL_GetError()); printf("Couldn't load sample.bmp: %s\n", SDL_GetError());
return; return 0;
} }
printf("Running freshly loaded blit test: %dx%d at %d bpp, flags: ", printf("Running freshly loaded blit test: %dx%d at %d bpp, flags: ",
bmp->w, bmp->h, bmp->format->BitsPerPixel); bmp->w, bmp->h, bmp->format->BitsPerPixel);
...@@ -140,7 +140,7 @@ int RunModeTests(SDL_Surface *screen) ...@@ -140,7 +140,7 @@ int RunModeTests(SDL_Surface *screen)
SDL_FreeSurface(tmp); SDL_FreeSurface(tmp);
if ( ! bmp ) { if ( ! bmp ) {
printf("Couldn't convert sample.bmp: %s\n", SDL_GetError()); printf("Couldn't convert sample.bmp: %s\n", SDL_GetError());
return; return 0;
} }
printf("Running display format blit test: %dx%d at %d bpp, flags: ", printf("Running display format blit test: %dx%d at %d bpp, flags: ",
bmp->w, bmp->h, bmp->format->BitsPerPixel); bmp->w, bmp->h, bmp->format->BitsPerPixel);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment