Enhancements: Add placeholder support for new enhancement settings (Author, WIP...)

- Implementation pending.
This commit is contained in:
oddMLan 2021-05-25 15:47:04 -07:00
parent 416205ed5f
commit ada6800c67
1 changed files with 32 additions and 0 deletions

View File

@ -183,6 +183,38 @@ CEnhancement::CEnhancement(const char * Ident, const char * Entry) :
{ {
SetOverClock(true, atoi(&Pos[1])); SetOverClock(true, atoi(&Pos[1]));
} }
else if (stricmp(Key.c_str(), "Author") == 0)
{
// TODO
}
else if (stricmp(Key.c_str(), "WIP") == 0)
{
// TODO
}
else if (stricmp(Key.c_str(), "Counter Factor") == 0)
{
// TODO
}
else if (stricmp(Key.c_str(), "VI Refresh") == 0)
{
// TODO
}
else if (stricmp(Key.c_str(), "RDRAM Size") == 0)
{
// TODO
}
else if (stricmp(Key.c_str(), "SMM-Protect") == 0)
{
// TODO
}
else if (stricmp(Key.c_str(), "Fixed Audio") == 0)
{
// TODO
}
else if (stricmp(Key.c_str(), "Sync Audio") == 0)
{
// TODO
}
else else
{ {
g_Notify->BreakPoint(__FILE__, __LINE__); g_Notify->BreakPoint(__FILE__, __LINE__);