mirror of https://github.com/stella-emu/stella.git
Fixed crash from non-initialized value.
This commit is contained in:
parent
2d58825b25
commit
b0bb4bda29
|
@ -37,6 +37,7 @@ PromptWidget::PromptWidget(GuiObject* boss, const GUI::Font& font,
|
|||
int x, int y, int w, int h)
|
||||
: Widget(boss, font, x, y, w - kScrollBarWidth, h),
|
||||
CommandSender(boss),
|
||||
_historyIndex(0),
|
||||
_makeDirty(false),
|
||||
_firstTime(true),
|
||||
_exitedEarly(false)
|
||||
|
|
Loading…
Reference in New Issue