aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/detection.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-09-25 20:11:12 -0700
committerPaul Gilbert2019-09-25 20:13:28 -0700
commit239fbce8e3741a4b02339c2ecc5fce53cee6562e (patch)
tree732180aea423b438f2177db2df4897af1ad60fce /engines/glk/detection.cpp
parent9e17ff0c75ea790b2619a920b77b580f9d8d1ce2 (diff)
downloadscummvm-rg350-239fbce8e3741a4b02339c2ecc5fce53cee6562e.tar.gz
scummvm-rg350-239fbce8e3741a4b02339c2ecc5fce53cee6562e.tar.bz2
scummvm-rg350-239fbce8e3741a4b02339c2ecc5fce53cee6562e.zip
GLK: ADRIFT: gcc compilation fixes
Diffstat (limited to 'engines/glk/detection.cpp')
-rw-r--r--engines/glk/detection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/detection.cpp b/engines/glk/detection.cpp
index cce1ec1ef0..4be0c38041 100644
--- a/engines/glk/detection.cpp
+++ b/engines/glk/detection.cpp
@@ -70,9 +70,9 @@ GlkDetectedGame::GlkDetectedGame(const char *id, const char *desc, const Common:
addExtraEntry("filename", filename);
}
-GlkDetectedGame::GlkDetectedGame(const char *id, const char *desc, const char *extra,
+GlkDetectedGame::GlkDetectedGame(const char *id, const char *desc, const char *xtra,
const Common::String &filename, Common::Language lang) :
- DetectedGame(id, desc, lang, Common::kPlatformUnknown, extra) {
+ DetectedGame(id, desc, lang, Common::kPlatformUnknown, xtra) {
setGUIOptions(GUIO3(GUIO_NOSPEECH, GUIO_NOMUSIC, GUIO_NOSUBTITLES));
addExtraEntry("filename", filename);
}