mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-09 12:25:16 +01:00
39194bfaf3
+ improved Menu transition effects + added support for ogg background music + improved ROM Selection Menu (automatic text scrolling, wiimote support, ...) + changed arrow buttons aspect (feel better now ?) + minor bufgixes and menu adjustments
49 lines
954 B
C
49 lines
954 B
C
|
|
#ifndef _OSD_H_
|
|
#define _OSD_H_
|
|
|
|
#define NGC 1
|
|
|
|
#include <gccore.h>
|
|
#include <ogcsys.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <malloc.h>
|
|
#include <sys/dir.h>
|
|
|
|
#ifdef HW_RVL
|
|
#include <di/di.h>
|
|
#endif
|
|
|
|
#include "gx_input.h"
|
|
#include "gx_audio.h"
|
|
#include "gx_video.h"
|
|
#include "config.h"
|
|
|
|
#define DEFAULT_PATH "/genplus"
|
|
|
|
/* globals */
|
|
extern void error(char *format, ...);
|
|
extern void ClearGGCodes();
|
|
extern void GetGGEntries();
|
|
extern void legal();
|
|
|
|
extern void reloadrom (int size, char *name);
|
|
extern void shutdown();
|
|
|
|
extern int ManageSRAM(u8 direction, u8 device);
|
|
extern int ManageState(u8 direction, u8 device);
|
|
extern void memfile_autosave(s8 autosram, s8 autostate);
|
|
extern void memfile_autoload(s8 autosram, s8 autostate);
|
|
|
|
extern u8 fat_enabled;
|
|
extern u32 frameticker;
|
|
extern char rom_filename[256];
|
|
|
|
#ifdef HW_RVL
|
|
extern u8 Shutdown;
|
|
#endif
|
|
|
|
#endif /* _OSD_H_ */
|