This commit is contained in:
twinaphex 2020-09-19 04:02:15 +02:00
parent ec8de2b95c
commit 97e7209633
2 changed files with 0 additions and 33 deletions

View File

@ -1,14 +0,0 @@
#ifndef _MDFN_SETTINGS_DRIVER_H
#define _MDFN_SETTINGS_DRIVER_H
#include "settings-common.h"
bool MDFNI_SetSetting(const char *name, const char *value, bool NetplayOverride = FALSE);
bool MDFNI_SetSettingB(const char *name, bool value);
bool MDFNI_SetSettingUI(const char *name, uint64 value);
bool MDFNI_DumpSettingsDef(const char *path);
#include <map>
#endif

View File

@ -81,22 +81,3 @@ std::string MDFN_GetSettingS(const char *name)
fprintf(stderr, "unhandled setting S: %s\n", name);
return 0;
}
bool MDFNI_SetSetting(const char *name, const char *value, bool NetplayOverride)
{
return false;
}
bool MDFNI_SetSettingB(const char *name, bool value)
{
return false;
}
bool MDFNI_SetSettingUI(const char *name, uint64 value)
{
return false;
}
void MDFNI_DumpSettingsDef(const char *path)
{
}