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,7 +366,7 @@ 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));
}

View File

@ -94,16 +94,16 @@ class CFrame : public wxFrame
Toolbar_Refresh,
Toolbar_Browse,
Toolbar_Play,
Toolbar_Stop, Toolbar_Stop_Dis,
Toolbar_Stop,
Toolbar_Pause,
Toolbar_PluginOptions,
Toolbar_PluginGFX,
Toolbar_PluginDSP, Toolbar_PluginDSP_Dis,
Toolbar_PluginDSP,
Toolbar_PluginPAD,
Toolbar_FullScreen,
Toolbar_Help,
#ifdef MUSICMOD
Toolbar_Log, Toolbar_Log_Dis,
Toolbar_Log,
#endif
Bitmaps_Max,
END