Patches for PocketGo compilation

This commit is contained in:
2022-08-04 00:39:06 +02:00
parent 5d630b66f0
commit c8b08f9cf7
5 changed files with 63 additions and 25 deletions

13
Source/TargetsConfigs.h Normal file
View File

@ -0,0 +1,13 @@
#ifdef Target_PocketGo
#define ScreenBits 16
int ScreenWidth = 320;
int ScreenHeight = 240;
#else
#define ScreenBits 32
int ScreenWidth = 512;
int ScreenHeight = 512;
#endif