debug build crash fix, re-enable copying of files on building in vs....why was this disabled?

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1750 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2009-01-03 19:30:59 +00:00
parent 41e474d534
commit f0cffe4e98
2 changed files with 5 additions and 5 deletions

View File

@ -366,10 +366,10 @@ void CFrame::InitBitmaps()
#endif
// Scale to 24x24 for toolbar. Toolbar_Log is already 24x24
for (size_t n = Toolbar_FileOpen; n <= Toolbar_Help; n++)
for (size_t n = Toolbar_FileOpen; n < WXSIZEOF(m_Bitmaps); n++)
{
m_Bitmaps[n] = wxBitmap(m_Bitmaps[n].ConvertToImage().Scale(24, 24));
}
}
}