aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/inter.h')
-rw-r--r--engines/gob/inter.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/gob/inter.h b/engines/gob/inter.h
index 07e873c703..6a403ce928 100644
--- a/engines/gob/inter.h
+++ b/engines/gob/inter.h
@@ -156,6 +156,12 @@ protected:
void o_drawNOP() {}
void o_funcNOP(OpFuncParams &params) {}
void o_gobNOP(OpGobParams &params) {}
+
+ void storeValue(uint16 index, uint16 type, uint32 value);
+ void storeValue(uint32 value);
+
+ void storeString(uint16 index, uint16 type, const char *value);
+ void storeString(const char *value);
};
class Inter_v1 : public Inter {
@@ -630,12 +636,6 @@ private:
INIConfig _inis;
Databases _databases;
- void storeValue(uint16 index, uint16 type, uint32 value);
- void storeValue(uint32 value);
-
- void storeString(uint16 index, uint16 type, const char *value);
- void storeString(const char *value);
-
Common::String findFile(const Common::String &mask);
};