mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
disable the annoying deprecation warnings in debugfast
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2698 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -356,8 +356,8 @@ void CLogWindow::UpdateLog()
|
||||
wxString collected_text;
|
||||
// rough estimate.
|
||||
collected_text.reserve(100 * msgQueue.size());
|
||||
u32 msgQueueSize = msgQueue.size();
|
||||
for (unsigned int i = 0; i < msgQueueSize; i++)
|
||||
int msgQueueSize = (int)msgQueue.size();
|
||||
for (int i = 0; i < msgQueueSize; i++)
|
||||
{
|
||||
#ifndef _WIN32
|
||||
// FIXME This looks horrible on windows: SetForegroundColour changes
|
||||
|
Reference in New Issue
Block a user