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:
parent
41e474d534
commit
f0cffe4e98
|
@ -366,10 +366,10 @@ void CFrame::InitBitmaps()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Scale to 24x24 for toolbar. Toolbar_Log is already 24x24
|
// 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));
|
m_Bitmaps[n] = wxBitmap(m_Bitmaps[n].ConvertToImage().Scale(24, 24));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -94,16 +94,16 @@ class CFrame : public wxFrame
|
||||||
Toolbar_Refresh,
|
Toolbar_Refresh,
|
||||||
Toolbar_Browse,
|
Toolbar_Browse,
|
||||||
Toolbar_Play,
|
Toolbar_Play,
|
||||||
Toolbar_Stop, Toolbar_Stop_Dis,
|
Toolbar_Stop,
|
||||||
Toolbar_Pause,
|
Toolbar_Pause,
|
||||||
Toolbar_PluginOptions,
|
Toolbar_PluginOptions,
|
||||||
Toolbar_PluginGFX,
|
Toolbar_PluginGFX,
|
||||||
Toolbar_PluginDSP, Toolbar_PluginDSP_Dis,
|
Toolbar_PluginDSP,
|
||||||
Toolbar_PluginPAD,
|
Toolbar_PluginPAD,
|
||||||
Toolbar_FullScreen,
|
Toolbar_FullScreen,
|
||||||
Toolbar_Help,
|
Toolbar_Help,
|
||||||
#ifdef MUSICMOD
|
#ifdef MUSICMOD
|
||||||
Toolbar_Log, Toolbar_Log_Dis,
|
Toolbar_Log,
|
||||||
#endif
|
#endif
|
||||||
Bitmaps_Max,
|
Bitmaps_Max,
|
||||||
END
|
END
|
||||||
|
|
Loading…
Reference in New Issue