mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
SCUMM: Fix for bug #3064655 "Restart with F8 key not working properly".
svn-id: r52715
This commit is contained in:
parent
3ed22f9f30
commit
70245181f1
@ -473,14 +473,25 @@ void PauseDialog::handleKeyDown(Common::KeyState state) {
|
||||
}
|
||||
|
||||
ConfirmDialog::ConfirmDialog(ScummEngine *scumm, int res)
|
||||
: InfoDialog(scumm, res) {
|
||||
: InfoDialog(scumm, res), _yesKey('y'), _noKey('n') {
|
||||
|
||||
if (_message.lastChar() != ')') {
|
||||
_yesKey = _message.lastChar();
|
||||
_message.deleteLastChar();
|
||||
|
||||
if (_yesKey >= 'A' && _yesKey <= 'Z')
|
||||
_yesKey += 'a' - 'A';
|
||||
|
||||
_text->setLabel(_message);
|
||||
reflowLayout();
|
||||
}
|
||||
}
|
||||
|
||||
void ConfirmDialog::handleKeyDown(Common::KeyState state) {
|
||||
if (state.keycode == Common::KEYCODE_n) {
|
||||
if (state.keycode == Common::KEYCODE_n || state.ascii == _noKey) {
|
||||
setResult(0);
|
||||
close();
|
||||
} else if (state.keycode == Common::KEYCODE_y) {
|
||||
} else if (state.keycode == Common::KEYCODE_y || state.ascii == _yesKey) {
|
||||
setResult(1);
|
||||
close();
|
||||
} else
|
||||
|
@ -118,6 +118,9 @@ class ConfirmDialog : public InfoDialog {
|
||||
public:
|
||||
ConfirmDialog(ScummEngine *scumm, int res);
|
||||
virtual void handleKeyDown(Common::KeyState state);
|
||||
|
||||
protected:
|
||||
char _yesKey, _noKey;
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user