From 5cd2f0253b7e628301b935947b64f735e224bccb Mon Sep 17 00:00:00 2001 From: Fanatic-64 <10682703+Fanatic-64@users.noreply.github.com> Date: Wed, 8 Jan 2025 06:33:29 -0600 Subject: [PATCH] Fix wrong setting names in Project64.cfg for LogRomHeader and LogUnknown (#2452) --- Source/Project64-core/Settings.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Project64-core/Settings.cpp b/Source/Project64-core/Settings.cpp index db6f45295..af1190649 100644 --- a/Source/Project64-core/Settings.cpp +++ b/Source/Project64-core/Settings.cpp @@ -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"); }