mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-04 18:05:06 +01:00
d66d747d98
- added port $3E emulation (SMS, GG) - added SMS & GG BIOS support - added an option to run BIOS without cartridge - added separate ROM browsers for SG-1000, Master System, Game Gear & Mega Drive / Genesis - changed Cheat menu icon - moved ROM device selection (SD,USB,DVD) to menu options - moved savestate compression/decompression out of emulator core - removed useless background images & background color option - prevented deletion of cheat files when no valid codes are found left - added IOS patch on startup to fix Homebrew Channel network bug when <no_ios_reload> option is used [GUI] -
12 lines
170 B
C
12 lines
170 B
C
|
|
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
#define MAX_INPUTS 8
|
|
|
|
extern int debug_on;
|
|
extern int log_error;
|
|
extern int sdl_input_update(void);
|
|
|
|
#endif /* _MAIN_H_ */
|