mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-04 09:55:08 +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] -
32 lines
604 B
C
32 lines
604 B
C
|
|
#ifndef _OSD_H_
|
|
#define _OSD_H_
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include <time.h>
|
|
#include <conio.h>
|
|
|
|
#include <SDL.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "shared.h"
|
|
#include "main.h"
|
|
#include "config.h"
|
|
#include "error.h"
|
|
#include "unzip.h"
|
|
#include "fileio.h"
|
|
|
|
#define osd_input_Update sdl_input_update
|
|
|
|
#define GG_ROM "./ggenie.bin"
|
|
#define AR_ROM "./areplay.bin"
|
|
#define SK_ROM "./sk.bin"
|
|
#define SK_UPMEM "./sk2chip.bin"
|
|
#define MD_BIOS "./bios.bin"
|
|
#define MS_BIOS "./bios.sms"
|
|
#define GG_BIOS "./bios.gg"
|
|
|
|
#endif /* _OSD_H_ */
|