Simplify a few OSD::AddMessage calls now that this function accepts std::string objects

This commit is contained in:
Pierre Bourdon
2013-08-24 01:44:16 +02:00
parent 367d6dfd65
commit 9deb63a312
2 changed files with 3 additions and 3 deletions

View File

@ -375,7 +375,7 @@ void EmuThread()
return;
}
OSD::AddMessage(("Dolphin " + g_video_backend->GetName() + " Video Backend.").c_str(), 5000);
OSD::AddMessage("Dolphin " + g_video_backend->GetName() + " Video Backend.", 5000);
if (!DSP::GetDSPEmulator()->Initialize(g_pWindowHandle,
_CoreParameter.bWii, _CoreParameter.bDSPThread))