From e93fb5fe805017bed3e8efc17864dde6e650816b Mon Sep 17 00:00:00 2001 From: Lars Persson Date: Sun, 27 Jul 2008 21:35:39 +0000 Subject: Fixed the Symbian default savepath, but adding the needed \ at the end. svn-id: r33345 --- base/commandLine.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'base/commandLine.cpp') diff --git a/base/commandLine.cpp b/base/commandLine.cpp index b9fd4ecfb7..725ab069f1 100644 --- a/base/commandLine.cpp +++ b/base/commandLine.cpp @@ -228,6 +228,7 @@ void registerDefaults() { #elif defined(__SYMBIAN32__) strcpy(savePath, Symbian::GetExecutablePath()); strcat(savePath, DEFAULT_SAVE_PATH); + strcat(savePath, '\\'); ConfMan.registerDefault("savepath", savePath); #elif defined (IPHONE) ConfMan.registerDefault("savepath", OSystem_IPHONE::getSavePath()); -- cgit v1.2.3 From 2f0a40a6971a73737e16ecd46fda3b78c4c7b04e Mon Sep 17 00:00:00 2001 From: Lars Persson Date: Sun, 27 Jul 2008 21:37:47 +0000 Subject: Fixed the Symbian default savepath, but adding the needed \ at the end and now as a string. svn-id: r33347 --- base/commandLine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/commandLine.cpp') diff --git a/base/commandLine.cpp b/base/commandLine.cpp index 725ab069f1..fa96e30b9a 100644 --- a/base/commandLine.cpp +++ b/base/commandLine.cpp @@ -228,7 +228,7 @@ void registerDefaults() { #elif defined(__SYMBIAN32__) strcpy(savePath, Symbian::GetExecutablePath()); strcat(savePath, DEFAULT_SAVE_PATH); - strcat(savePath, '\\'); + strcat(savePath, "\\"); ConfMan.registerDefault("savepath", savePath); #elif defined (IPHONE) ConfMan.registerDefault("savepath", OSystem_IPHONE::getSavePath()); -- cgit v1.2.3 From e1520c6462b0cd465ef744a6af5a709abaea635d Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 29 Jul 2008 00:49:44 +0000 Subject: Changed output of --test-detector: multiple hits with same gameid now only are a warning, not a failure svn-id: r33387 --- base/commandLine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base/commandLine.cpp') diff --git a/base/commandLine.cpp b/base/commandLine.cpp index fa96e30b9a..ea0e1465b6 100644 --- a/base/commandLine.cpp +++ b/base/commandLine.cpp @@ -685,9 +685,9 @@ static void runDetectorTest() { failure++; } else if (candidates.size() > 1) { if (gameidDiffers) { - printf(" FAILURE: Multiple games detected, some/all with wrong gameid\n"); + printf(" WARNING: Multiple games detected, some/all with wrong gameid\n"); } else { - printf(" FAILURE: Multiple games detected, but all have the same gameid\n"); + printf(" WARNING: Multiple games detected, but all have the same gameid\n"); } failure++; } else if (gameidDiffers) { -- cgit v1.2.3