aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/preagi.h
diff options
context:
space:
mode:
authorEugene Sandulenko2009-06-06 17:45:52 +0000
committerEugene Sandulenko2009-06-06 17:45:52 +0000
commit1a321a206471bd3e18cd5c2d5d1cc452c051a235 (patch)
treedad892a2f900784d0e9f77b9d0bed15a39161c52 /engines/agi/preagi.h
parent2113060c43c4975f0c2960d32b3e580ae86bb7ec (diff)
downloadscummvm-rg350-1a321a206471bd3e18cd5c2d5d1cc452c051a235.tar.gz
scummvm-rg350-1a321a206471bd3e18cd5c2d5d1cc452c051a235.tar.bz2
scummvm-rg350-1a321a206471bd3e18cd5c2d5d1cc452c051a235.zip
Cleanup
svn-id: r41254
Diffstat (limited to 'engines/agi/preagi.h')
-rw-r--r--engines/agi/preagi.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/agi/preagi.h b/engines/agi/preagi.h
index d7a1101c68..a134955d86 100644
--- a/engines/agi/preagi.h
+++ b/engines/agi/preagi.h
@@ -41,9 +41,10 @@ protected:
void initialize();
public:
- void agiTimerLow() {}
- int agiGetKeypressLow() { return 0; }
- int agiIsKeypressLow() { return 0; }
+ void pollTimer(void) {}
+ int getKeypress(void) { return 0; }
+ bool isKeypress(void) { return false; }
+ void clearKeyQueue(void) {}
PreAgiEngine(OSystem *syst, const AGIGameDescription *gameDesc);
virtual ~PreAgiEngine();