mirror of
https://gitlab.com/octospacc/BloccSpacc
synced 2025-06-05 21:39:15 +02:00
14 lines
178 B
C
14 lines
178 B
C
#ifdef Target_PocketGo
|
|
|
|
#define ScreenBits 16
|
|
int ScreenWidth = 320;
|
|
int ScreenHeight = 240;
|
|
|
|
#else
|
|
|
|
#define ScreenBits 32
|
|
int ScreenWidth = 512;
|
|
int ScreenHeight = 512;
|
|
|
|
#endif
|