From 400d2b10af56093e4a4aea650da392bd2c152af8 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 31 May 2009 16:59:45 +0000 Subject: GOB: Replaced many uses of strdupcpy by Common::String svn-id: r41077 --- engines/gob/detection.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/gob/detection.cpp') 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; -- cgit v1.2.3