diff options
author | Willem Jan Palenstijn | 2009-02-25 18:23:28 +0000 |
---|---|---|
committer | Willem Jan Palenstijn | 2009-02-25 18:23:28 +0000 |
commit | 9ed544679a352d50cef9b1a9a0c12dd3dd63ea61 (patch) | |
tree | 7540a5ecf532218bbfac4f420693f9f3fbce7fcc /engines/sci/include | |
parent | 98a7ba4ec3899e7d6b154169a39427a998c4758c (diff) | |
download | scummvm-rg350-9ed544679a352d50cef9b1a9a0c12dd3dd63ea61.tar.gz scummvm-rg350-9ed544679a352d50cef9b1a9a0c12dd3dd63ea61.tar.bz2 scummvm-rg350-9ed544679a352d50cef9b1a9a0c12dd3dd63ea61.zip |
Interpret NONBLOCK as PEEK; poll while sleeping.
Also use Common::List for internal event queue.
svn-id: r38880
Diffstat (limited to 'engines/sci/include')
-rw-r--r-- | engines/sci/include/uinput.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/include/uinput.h b/engines/sci/include/uinput.h index eb9a5a6439..dbf8cc424f 100644 --- a/engines/sci/include/uinput.h +++ b/engines/sci/include/uinput.h @@ -61,7 +61,7 @@ struct sci_event_t { /*Fake values for other events*/ #define SCI_EVT_ERROR (1<<10) #define SCI_EVT_QUIT (1<<11) -#define SCI_EVT_NONBLOCK (1<<15) +#define SCI_EVT_PEEK (1<<15) /* The QUIT event may be used to signal an external 'quit' command being ** issued to the gfx driver. */ #define SCI_EVT_ANY 0x7fff |