mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-25 06:44:59 +00:00
Stop dolphin from loading help.png
It was never used, just wasting time and resources. This patch simply deletes two lines of code.
This commit is contained in:
parent
d2c3222fcc
commit
1fb373f439
2 changed files with 0 additions and 2 deletions
|
@ -196,7 +196,6 @@ private:
|
||||||
Toolbar_ConfigDSP,
|
Toolbar_ConfigDSP,
|
||||||
Toolbar_ConfigPAD,
|
Toolbar_ConfigPAD,
|
||||||
Toolbar_Wiimote,
|
Toolbar_Wiimote,
|
||||||
Toolbar_Help,
|
|
||||||
EToolbar_Max
|
EToolbar_Max
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -549,7 +549,6 @@ void CFrame::InitBitmaps()
|
||||||
m_Bitmaps[Toolbar_Wiimote].LoadFile(dir + "wiimote.png", wxBITMAP_TYPE_PNG);
|
m_Bitmaps[Toolbar_Wiimote].LoadFile(dir + "wiimote.png", wxBITMAP_TYPE_PNG);
|
||||||
m_Bitmaps[Toolbar_Screenshot].LoadFile(dir + "screenshot.png", wxBITMAP_TYPE_PNG);
|
m_Bitmaps[Toolbar_Screenshot].LoadFile(dir + "screenshot.png", wxBITMAP_TYPE_PNG);
|
||||||
m_Bitmaps[Toolbar_FullScreen].LoadFile(dir + "fullscreen.png", wxBITMAP_TYPE_PNG);
|
m_Bitmaps[Toolbar_FullScreen].LoadFile(dir + "fullscreen.png", wxBITMAP_TYPE_PNG);
|
||||||
m_Bitmaps[Toolbar_Help].LoadFile(dir + "help.png", wxBITMAP_TYPE_PNG);
|
|
||||||
|
|
||||||
// Update in case the bitmap has been updated
|
// Update in case the bitmap has been updated
|
||||||
if (m_ToolBar != NULL)
|
if (m_ToolBar != NULL)
|
||||||
|
|
Loading…
Add table
Reference in a new issue