mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
MusicMod: Build fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1752 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -365,8 +365,9 @@ void CFrame::InitBitmaps()
|
||||
MM_InitBitmaps();
|
||||
#endif
|
||||
|
||||
// Scale to 24x24 for toolbar. Toolbar_Log is already 24x24
|
||||
for (size_t n = Toolbar_FileOpen; n < WXSIZEOF(m_Bitmaps); n++)
|
||||
/* Scale to 24x24 for toolbar. Toolbar_Log is already 24x24 so we exclude that from
|
||||
the rescaling */
|
||||
for (size_t n = Toolbar_FileOpen; n <= Toolbar_Help; n++)
|
||||
{
|
||||
m_Bitmaps[n] = wxBitmap(m_Bitmaps[n].ConvertToImage().Scale(24, 24));
|
||||
}
|
||||
|
Reference in New Issue
Block a user