diff options
author | Travis Howell | 2003-12-14 14:32:12 +0000 |
---|---|---|
committer | Travis Howell | 2003-12-14 14:32:12 +0000 |
commit | d4191c73912ab4b11a76759098430b2ed15144cc (patch) | |
tree | 31eccb37bd78a9fb02ef6a42888d37070526f7c4 /scumm | |
parent | 9d1f4842a59133a7f3be2e57b1c74d6e4ac1f86c (diff) | |
download | scummvm-rg350-d4191c73912ab4b11a76759098430b2ed15144cc.tar.gz scummvm-rg350-d4191c73912ab4b11a76759098430b2ed15144cc.tar.bz2 scummvm-rg350-d4191c73912ab4b11a76759098430b2ed15144cc.zip |
Enable restart key in later games.
We could use a confirmation dialog.
svn-id: r11633
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scummvm.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 44476cc6e4..a5d2805218 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -1844,8 +1844,7 @@ void ScummEngine::processKbd() { #endif if (VAR_RESTART_KEY != 0xFF && _lastKeyHit == VAR(VAR_RESTART_KEY)) { - warning("Restart not implemented"); - //restart(); + restart(); return; } |