Remove the useless msg_handler compilation unit that was left over from Dolphin

This commit is contained in:
archshift 2015-02-18 22:18:47 -08:00
parent ec8f2210e3
commit 5efd149ad5
8 changed files with 13 additions and 180 deletions

View file

@ -147,7 +147,7 @@ void RestoreRegisterEvent(int event_type, const char* name, TimedCallback callba
void UnregisterAllEvents() {
if (first)
PanicAlert("Cannot unregister events with events pending");
LOG_ERROR(Core_Timing, "Cannot unregister events with events pending");
event_types.clear();
}
@ -535,7 +535,7 @@ std::string GetScheduledEventsSummary() {
while (event) {
unsigned int t = event->type;
if (t >= event_types.size())
PanicAlert("Invalid event type"); // %i", t);
LOG_ERROR(Core_Timing, "Invalid event type"); // %i", t);
const char* name = event_types[event->type].name;
if (!name)
name = "[unknown]";