Remove some unneeded functions

This commit is contained in:
twinaphex 2016-06-07 12:45:36 +02:00
parent 45086ecadc
commit d7e3349dac

View File

@ -38,11 +38,6 @@ extern char retro_cd_base_name[4096];
extern char retro_save_directory[4096];
extern char retro_base_directory[4096];
bool MDFN_SaveSettings(const char *path)
{
return(1);
}
uint64_t MDFN_GetSettingUI(const char *name)
{
if (!strcmp("psx.spu.resamp_quality", name)) /* make configurable */
@ -169,8 +164,3 @@ bool MDFNI_SetSettingUI(const char *name, uint64_t value)
{
return false;
}
bool MDFNI_DumpSettingsDef(const char *path)
{
return true;
}