Fix wrong setting names in Project64.cfg for LogRomHeader and LogUnknown (#2452)

This commit is contained in:
Fanatic-64 2025-01-08 06:33:29 -06:00 committed by GitHub
parent c7d8a70a4d
commit 5cd2f0253b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -422,8 +422,8 @@ void CSettings::AddHowToHandleSetting(const char * BaseDirectory)
AddHandler(Logging_LogExceptions, new CSettingTypeApplication("Logging", "Log Exceptions", false));
AddHandler(Logging_NoInterrupts, new CSettingTypeApplication("Logging", "No Interrupts", false));
AddHandler(Logging_LogCache, new CSettingTypeApplication("Logging", "Log Cache", false));
AddHandler(Logging_LogRomHeader, new CSettingTypeApplication("Logging", "Generate Log Files", false));
AddHandler(Logging_LogUnknown, new CSettingTypeApplication("Logging", "Log Rom Header", false));
AddHandler(Logging_LogRomHeader, new CSettingTypeApplication("Logging", "Log Rom Header", false));
AddHandler(Logging_LogUnknown, new CSettingTypeApplication("Logging", "Log Unknown", false));
WriteTrace(TraceAppInit, TraceDebug, "Done");
}