diff options
author | Eugene Sandulenko | 2016-08-02 22:30:33 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-03 23:40:36 +0200 |
commit | 5414a0ec2cfbdc1572501af5de8e055a06bd6b31 (patch) | |
tree | 854c2b016f27636e1411ffcbdeda0898e9578841 | |
parent | b2d5c25e2fb35dfd46702af79faf526d4ffe38b0 (diff) | |
download | scummvm-rg350-5414a0ec2cfbdc1572501af5de8e055a06bd6b31.tar.gz scummvm-rg350-5414a0ec2cfbdc1572501af5de8e055a06bd6b31.tar.bz2 scummvm-rg350-5414a0ec2cfbdc1572501af5de8e055a06bd6b31.zip |
DIRECTOR: Lingo: Added stub fot 'the keycode' entity
-rw-r--r-- | engines/director/lingo/lingo-the.cpp | 1 | ||||
-rw-r--r-- | engines/director/lingo/lingo-the.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/engines/director/lingo/lingo-the.cpp b/engines/director/lingo/lingo-the.cpp index f2d01fe0a0..2aedf32a54 100644 --- a/engines/director/lingo/lingo-the.cpp +++ b/engines/director/lingo/lingo-the.cpp @@ -39,6 +39,7 @@ TheEntity entities[] = { { kTheFrame, "frame", false }, { kTheItemDelimiter, "itemDelimiter", false }, { kTheKey, "key", false }, + { kTheKeyCode, "keycode", false }, { kTheLastClick, "lastClick", false }, { kTheLastEvent, "lastEvent", false }, { kTheLastFrame, "lastFrame", false }, diff --git a/engines/director/lingo/lingo-the.h b/engines/director/lingo/lingo-the.h index 806c295204..5fea4ba009 100644 --- a/engines/director/lingo/lingo-the.h +++ b/engines/director/lingo/lingo-the.h @@ -58,6 +58,7 @@ enum TheEntityType { kTheRightMouseDown, kTheStillDown, kTheKey, + kTheKeyCode, kTheControlDown, kTheCommandDown, kTheShiftDown, |