aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/detection.cpp')
-rw-r--r--engines/gob/detection.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/gob/detection.cpp b/engines/gob/detection.cpp
index 5e243d1d92..213af22549 100644
--- a/engines/gob/detection.cpp
+++ b/engines/gob/detection.cpp
@@ -3468,14 +3468,14 @@ namespace Gob {
void GobEngine::initGame(const GOBGameDescription *gd) {
if (gd->startTotBase == 0)
- _startTot = strdupcpy("intro.tot");
+ _startTot = "intro.tot";
else
- _startTot = strdupcpy(gd->startTotBase);
+ _startTot = gd->startTotBase;
if (gd->startStkBase == 0)
- _startStk = strdupcpy("intro.stk");
+ _startStk = "intro.stk";
else
- _startStk = strdupcpy(gd->startStkBase);
+ _startStk = gd->startStkBase;
_demoIndex = gd->demoIndex;