summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2014-08-19 10:09:33 -0400
committerJasper St. Pierre <jstpierre@mecheye.net>2014-08-19 10:09:33 -0400
commit3bad4bcfdb17d1dacb8900f0d13294da21d82fde (patch)
tree411de9c9adf20c1ff957f6245ca812fe29ac9b1c /Source/Core
parent4a16211bae97a42c24ed43cf4174df03d180ac4a (diff)
PPCSymbolDB: Don't show any messages in the status bar
These don't really help anybody. We don't even have a status bar in MainNoGUI -- status bar text should be controlled by the UI, not the core code!
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/PowerPC/PPCSymbolDB.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp
index a63c586d97..829b0beab5 100644
--- a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp
+++ b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp
@@ -279,9 +279,6 @@ bool PPCSymbolDB::SaveMap(const std::string& filename, bool WithCodes) const
mapFile.c_str()).c_str(), "Confirm", wxYES_NO)) return false;
}
- if (WithCodes)
- Host_UpdateStatusBar("Saving code, please stand by ...");
-
// Make a file
File::IOFile f(mapFile, "w");
if (!f)
@@ -342,8 +339,6 @@ bool PPCSymbolDB::SaveMap(const std::string& filename, bool WithCodes) const
fprintf(f.GetHandle(), "\n");
}
}
- // ---------------
- Host_UpdateStatusBar(StringFromFormat("Saved %s", mapFile.c_str()).c_str());
return true;
}