mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-08 00:59:44 +00: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:
parent
ee7ef367ff
commit
6c4778287b
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue