mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-04 18:05:06 +01:00
cab4ecba99
* added an option to set VDP mode (PAL/NTSC) independently from console region. * added an option to select console master clock frequency (PAL/NTSC/AUTO): emulation now run at selected frequency when VSYNC is disabled. * added an option to force VSYNC disabled. * improved screen scaling. [Core] * moved INLINE definition to macros.h * removed unused typedef from osd_cpu.h * cleanup include files
14 lines
258 B
C
14 lines
258 B
C
#undef uint8
|
|
#undef uint16
|
|
#undef uint32
|
|
#undef int8
|
|
#undef int16
|
|
#undef int32
|
|
|
|
#define uint8 unsigned char
|
|
#define uint16 unsigned short
|
|
#define uint32 unsigned int
|
|
#define int8 signed char
|
|
#define int16 signed short
|
|
#define int32 signed int
|