aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/hugo/hugo.h
diff options
context:
space:
mode:
authorPaul Gilbert2019-05-11 17:11:55 +1000
committerPaul Gilbert2019-05-12 10:19:47 +1000
commit98f6315366eafc0568d46ee4d9cba8d0d6495950 (patch)
tree2aa451001287dac6e41d9f6ed2b9258cf84ede32 /engines/glk/hugo/hugo.h
parent4113183f5b3cc707c54b5723413c7e69b0f8f37c (diff)
downloadscummvm-rg350-98f6315366eafc0568d46ee4d9cba8d0d6495950.tar.gz
scummvm-rg350-98f6315366eafc0568d46ee4d9cba8d0d6495950.tar.bz2
scummvm-rg350-98f6315366eafc0568d46ee4d9cba8d0d6495950.zip
GLK: HUGO: Removed unneeded method stubs
Diffstat (limited to 'engines/glk/hugo/hugo.h')
-rw-r--r--engines/glk/hugo/hugo.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/glk/hugo/hugo.h b/engines/glk/hugo/hugo.h
index 046b6654dc..eeb65a29be 100644
--- a/engines/glk/hugo/hugo.h
+++ b/engines/glk/hugo/hugo.h
@@ -333,6 +333,10 @@ private:
// No implementation
}
+ void hugo_closefiles() {
+ // Glk closes all files on exit
+ }
+
int hugo_getkey() const {
// Not needed here--single-character events are handled solely by hugo_waitforkey(), below
return 0;
@@ -1111,12 +1115,9 @@ public:
virtual Common::Error saveGameData(strid_t file, const Common::String &desc) override;
// TODO: Stubs to be Properly implemented
- void hugo_closefiles() {}
- unsigned int FindWord(const char *a) { return 0; }
void hugo_stopsample() {}
void hugo_stopmusic() {}
int hugo_hasgraphics() { return 0; }
- int hugo_writetoscript(const char *s) { return 0; }
void DisplayPicture() {}
void PlayMusic() {}
void PlaySample() {}