mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-09 12:25:16 +01:00
ed11eb0133
* improved sprites processing accuracy. * fixed VBLANK transition line checks. * code cleanup and (minor) optimizations. [Core/Sound] * increased FM internal sample size to 32-bit to avoid overflow when adding channels. * added preliminary emulation of YM2612 DAC precision (can be configured to match real console output). * added configurable roll-off for FIR filtering in High-Quality FM mode. [Wii] *added support to enable/disable Video Encoder Trap Filter: can help reproducing "color blending" as on a real Genesis (composite video only). *added support to configure Video Encoder gamma correction.
55 lines
1.1 KiB
C
55 lines
1.1 KiB
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>
|
|
|
|
#include <asndlib.h>
|
|
#include <oggplayer.h>
|
|
|
|
#ifdef HW_RVL
|
|
#include <di/di.h>
|
|
#endif
|
|
|
|
#include "gx_input.h"
|
|
#include "gx_audio.h"
|
|
#include "gx_video.h"
|
|
#include "config.h"
|
|
#include "file_mem.h"
|
|
|
|
#define DEFAULT_PATH "/genplus"
|
|
#define GG_ROM "/genplus/ggenie.bin"
|
|
#define AR_ROM "/genplus/areplay.bin"
|
|
#define OS_ROM "/genplus/bios.bin"
|
|
#define SK_ROM "/genplus/sk.bin"
|
|
#define SK_UPMEM "/genplus/sk2chip.bin"
|
|
|
|
#ifdef HW_RVL
|
|
#define VERSION "version 1.4.0W"
|
|
#else
|
|
#define VERSION "version 1.4.0G"
|
|
#endif
|
|
|
|
#define osd_input_Update() gx_input_UpdateEmu()
|
|
|
|
/* globals */
|
|
extern void error(char *format, ...);
|
|
extern void ClearGGCodes();
|
|
extern void GetGGEntries();
|
|
extern void MainMenu(void);
|
|
extern void legal();
|
|
extern void reloadrom (int size, char *name);
|
|
extern void shutdown();
|
|
extern u32 frameticker;
|
|
extern u32 Shutdown;
|
|
|
|
#endif /* _OSD_H_ */
|