mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Core: Convert logging over to fmt pt. 1
Converts up to the DSP-related files for easier reviewing, the rest will be progressively moved over after this change gets merged.
This commit is contained in:
@ -126,7 +126,7 @@ static Location MapINIToRealLocation(const std::string& section, const std::stri
|
||||
if (!fail && system)
|
||||
return {*system, config_section, key};
|
||||
|
||||
WARN_LOG(CORE, "Unknown game INI option in section %s: %s", section.c_str(), key.c_str());
|
||||
WARN_LOG_FMT(CORE, "Unknown game INI option in section {}: {}", section, key);
|
||||
return {Config::System::Main, "", ""};
|
||||
}
|
||||
|
||||
@ -216,7 +216,7 @@ private:
|
||||
if (!File::Exists(ini_path))
|
||||
{
|
||||
// TODO: PanicAlert shouldn't be used for this.
|
||||
PanicAlertT("Selected controller profile does not exist");
|
||||
PanicAlertFmtT("Selected controller profile does not exist");
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user