Skip to content

Commit

Permalink
Pandora: Fixed SDL version in debug output.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Jul 19, 2016
1 parent 38ad328 commit 562926c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/video/pandora/SDL_pandora.c
Expand Up @@ -628,12 +628,12 @@ PND_gl_createcontext(_THIS, SDL_Window * window)
hNativeWnd = (NativeWindowType)malloc(16*1024);

if(!hNativeWnd)
printf( "Error : Wiz framebuffer allocatation failed\n" );
printf( "Error: Wiz framebuffer allocatation failed\n" );
else
printf( "SDL13: Wiz framebuffer allocated: %X\n", hNativeWnd );
printf( "SDL: Wiz framebuffer allocated: %X\n", hNativeWnd );
}
else {
printf( "SDL13: Wiz framebuffer already allocated: %X\n", hNativeWnd );
printf( "SDL: Wiz framebuffer already allocated: %X\n", hNativeWnd );
}

wdata->gles_surface =
Expand Down Expand Up @@ -837,7 +837,7 @@ PND_gl_deletecontext(_THIS, SDL_GLContext context)
{
free(hNativeWnd);
hNativeWnd = 0;
printf( "SDL13: Wiz framebuffer released\n" );
printf( "SDL: Wiz framebuffer released\n" );
}
#endif

Expand Down

0 comments on commit 562926c

Please sign in to comment.