mirror of https://github.com/stella-emu/stella.git
Fixed a few more unused variables warnings.
This commit is contained in:
parent
2ca9c6bee8
commit
5f06f165e0
|
@ -38,8 +38,8 @@ CommandDialog::CommandDialog(OSystem& osystem, DialogContainer& parent)
|
|||
buttonWidth = _font.getStringWidth("Time Machine On") + Dialog::fontWidth() * 2,
|
||||
VBORDER = Dialog::vBorder(),
|
||||
HBORDER = Dialog::hBorder(),
|
||||
VGAP = Dialog::vGap(),
|
||||
INDENT = Dialog::indent();
|
||||
VGAP = Dialog::vGap();
|
||||
//INDENT = Dialog::indent();
|
||||
const int HGAP = Dialog::buttonGap(),
|
||||
rowHeight = buttonHeight + VGAP;
|
||||
// Set real dimensions
|
||||
|
|
|
@ -32,7 +32,7 @@ JoystickDialog::JoystickDialog(GuiObject* boss, const GUI::Font& font,
|
|||
int xpos, ypos;
|
||||
WidgetArray wid;
|
||||
const int lineHeight = Dialog::lineHeight(),
|
||||
fontHeight = Dialog::fontHeight(),
|
||||
//fontHeight = Dialog::fontHeight(),
|
||||
fontWidth = Dialog::fontWidth(),
|
||||
buttonHeight = Dialog::buttonHeight(),
|
||||
buttonWidth = Dialog::buttonWidth("Remove"),
|
||||
|
|
Loading…
Reference in New Issue