diff options
| author | Lioncash <mai.iam2048@gmail.com> | 2023-04-13 09:38:09 -0400 |
|---|---|---|
| committer | Lioncash <mai.iam2048@gmail.com> | 2023-04-13 10:19:28 -0400 |
| commit | e4caace6bb6213851b979cdd76f9f44ef6d9cd09 (patch) | |
| tree | ae5d6cbcfa21c4084a301f96de4f560570c73a8b /Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp | |
| parent | 5c03b8af88e80e9502dcb0b20e17d9debf2617b3 (diff) | |
Common/IniFile: Move interface into Common namespace
Gets this out of the global namespace and into the Common namespace
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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()); |
