mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
skip intro only by escape
svn-id: r45726
This commit is contained in:
parent
b92c5ea757
commit
72157e1077
@ -307,7 +307,7 @@ bool Scene::processEvent(const Common::Event &event) {
|
||||
|
||||
case Common::EVENT_KEYDOWN:
|
||||
if (event.kbd.keycode == Common::KEYCODE_ESCAPE || event.kbd.keycode == Common::KEYCODE_SPACE) {
|
||||
if (intro) {
|
||||
if (intro && event.kbd.keycode == Common::KEYCODE_ESCAPE) {
|
||||
intro = false;
|
||||
message.clear();
|
||||
message_timer = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user