aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hugo/parser.h')
-rw-r--r--engines/hugo/parser.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/hugo/parser.h b/engines/hugo/parser.h
index b227f2ab4f..31572344a6 100644
--- a/engines/hugo/parser.h
+++ b/engines/hugo/parser.h
@@ -60,7 +60,6 @@ public:
protected:
HugoEngine *_vm;
-protected:
char *findNoun();
char *findVerb();
void showDosInventory();
@@ -69,6 +68,9 @@ protected:
uint16 _getIndex; // Index into ring buffer
uint16 _putIndex;
char _ringBuffer[32]; // Ring buffer
+
+private:
+ static const int kBlinksPerSec = 2; // Cursor blinks per second
};
class Parser_v1d : public Parser {