mirror of
https://gitlab.com/octospacc/BloccSpacc
synced 2025-06-05 21:39:15 +02:00
Patches for PocketGo compilation
This commit is contained in:
@ -30,11 +30,15 @@ void DrawSurf ( int x, int y, SDL_Surface * Src, SDL_Rect * Clip, SDL_Surface *
|
||||
|
||||
SDL_Surface * ScreenSet ( int Width, int Height, int Bits, SDL_Surface * Screen ) {
|
||||
Screen = SDL_SetVideoMode ( Width, Height, Bits,
|
||||
#ifdef Target_PocketGo
|
||||
SDL_HWSURFACE
|
||||
#else
|
||||
//SDL_SWSURFACE //|
|
||||
SDL_HWSURFACE |
|
||||
SDL_DOUBLEBUF |
|
||||
SDL_RESIZABLE //|
|
||||
//SDL_FULLSCREEN //|
|
||||
#endif
|
||||
);
|
||||
return Screen;
|
||||
}
|
||||
|
Reference in New Issue
Block a user