From e4caace6bb6213851b979cdd76f9f44ef6d9cd09 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 13 Apr 2023 09:38:09 -0400 Subject: Common/IniFile: Move interface into Common namespace Gets this out of the global namespace and into the Common namespace --- Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp') diff --git a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp index c21ae91e6f..2412bef831 100644 --- a/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp @@ -337,7 +337,7 @@ void BreakpointWidget::OnEditBreakpoint(u32 address, bool is_instruction_bp) void BreakpointWidget::OnLoad() { - IniFile ini; + Common::IniFile ini; if (!ini.Load(File::GetUserPath(D_GAMESETTINGS_IDX) + SConfig::GetInstance().GetGameID() + ".ini", false)) { @@ -367,7 +367,7 @@ void BreakpointWidget::OnLoad() void BreakpointWidget::OnSave() { - IniFile ini; + Common::IniFile ini; ini.Load(File::GetUserPath(D_GAMESETTINGS_IDX) + SConfig::GetInstance().GetGameID() + ".ini", false); ini.SetLines("BreakPoints", m_system.GetPowerPC().GetBreakPoints().GetStrings()); -- cgit v1.2.3