mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-04 09:55:08 +01:00
0beaccaea9
-removed unused soundbuffer for all platforms -renamed osd_input_Update to osd_input_update
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_ */
|