mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
a13e8a98ff
svn-id: r16762
14 lines
357 B
C
14 lines
357 B
C
#ifndef _SHARED_H_
|
|
#define _SHARED_H_
|
|
|
|
// OSystem : wide display
|
|
// consider ony 480x320 screens
|
|
// only available 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
|