blob: bc1481c50e8121d6e506b11ee2d6029b97d6246e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _SHARED_H_
#define _SHARED_H_
// OSystem : wide display
// consider ony 480x320 screens
// only avalaible for 320x200 games, so use values instead of vars
#define WIDE_PITCH 320 // pitch in portrait mode
#define WIDE_FULL_WIDTH 320 // original screen size
#define WIDE_HALF_WIDTH 160 // 320 / 2
#define WIDE_HALF_HEIGHT 100 // 200 / 2
#endif
|