mirror of
https://github.com/libretro/beetle-pce-fast-libretro.git
synced 2024-11-22 23:39:50 +00:00
30 lines
663 B
C
30 lines
663 B
C
#ifndef MDFN_SETTINGS_H
|
|
#define MDFN_SETTINGS_H
|
|
|
|
#include "mednafen-types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int setting_initial_scanline;
|
|
extern int setting_last_scanline;
|
|
extern int setting_pce_fast_nospritelimit;
|
|
extern int setting_pce_overclocked;
|
|
extern int setting_pce_hoverscan;
|
|
extern int setting_pce_fast_cddavolume;
|
|
extern int setting_pce_fast_adpcmvolume;
|
|
extern int setting_pce_fast_cdpsgvolume;
|
|
extern uint32_t setting_pce_fast_cdspeed;
|
|
extern bool OrderOfGriffonFix;
|
|
|
|
uint64 MDFN_GetSettingUI(const char *name);
|
|
double MDFN_GetSettingF(const char *name);
|
|
bool MDFN_GetSettingB(const char *name);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|