Pandora: Fixed SDL version in debug output.
1.1 --- a/src/video/pandora/SDL_pandora.c Tue Jul 19 21:01:30 2016 +0200
1.2 +++ b/src/video/pandora/SDL_pandora.c Tue Jul 19 21:02:09 2016 +0200
1.3 @@ -628,12 +628,12 @@
1.4 hNativeWnd = (NativeWindowType)malloc(16*1024);
1.5
1.6 if(!hNativeWnd)
1.7 - printf( "Error : Wiz framebuffer allocatation failed\n" );
1.8 + printf( "Error: Wiz framebuffer allocatation failed\n" );
1.9 else
1.10 - printf( "SDL13: Wiz framebuffer allocated: %X\n", hNativeWnd );
1.11 + printf( "SDL: Wiz framebuffer allocated: %X\n", hNativeWnd );
1.12 }
1.13 else {
1.14 - printf( "SDL13: Wiz framebuffer already allocated: %X\n", hNativeWnd );
1.15 + printf( "SDL: Wiz framebuffer already allocated: %X\n", hNativeWnd );
1.16 }
1.17
1.18 wdata->gles_surface =
1.19 @@ -837,7 +837,7 @@
1.20 {
1.21 free(hNativeWnd);
1.22 hNativeWnd = 0;
1.23 - printf( "SDL13: Wiz framebuffer released\n" );
1.24 + printf( "SDL: Wiz framebuffer released\n" );
1.25 }
1.26 #endif
1.27