aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/main.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2010-07-29 19:55:03 +0000
committerEugene Sandulenko2010-10-12 21:47:48 +0000
commit7b964a2823406721ec1200938948c0cfcdb3f1b1 (patch)
tree7e8df662c0cfd14e81596401c4b9aabbfbc32636 /engines/sword25/main.cpp
parent221fc150c6418c3eda949c149b3f6997f06ee341 (diff)
downloadscummvm-rg350-7b964a2823406721ec1200938948c0cfcdb3f1b1.tar.gz
scummvm-rg350-7b964a2823406721ec1200938948c0cfcdb3f1b1.tar.bz2
scummvm-rg350-7b964a2823406721ec1200938948c0cfcdb3f1b1.zip
SWORD25: Make couple file compilable
svn-id: r53179
Diffstat (limited to 'engines/sword25/main.cpp')
-rwxr-xr-xengines/sword25/main.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/engines/sword25/main.cpp b/engines/sword25/main.cpp
index f58421ed64..ae9b3d0a2d 100755
--- a/engines/sword25/main.cpp
+++ b/engines/sword25/main.cpp
@@ -27,12 +27,11 @@
#include <iostream>
using namespace std;
-#include "kernel/common.h"
-#include "kernel/kernel.h"
-#include "kernel/filesystemutil.h"
-#include "kernel/debug/memorydumper.h"
-#include "script/script.h"
-#include "package/packagemanager.h"
+#include "sword25/kernel/common.h"
+#include "sword25/kernel/kernel.h"
+#include "sword25/kernel/filesystemutil.h"
+#include "sword25/script/script.h"
+#include "sword25/package/packagemanager.h"
#define BS_LOG_PREFIX "MAIN"
@@ -198,7 +197,7 @@ bool main2(int argc, char ** argv)
for (int i = 0; i < argc; ++i) CommandLineParameters.push_back(string(argv[i]));
if (!AppStart(CommandLineParameters))
{
- MessageBoxA(0, ENGINE_STARTUP_ERROR_MESSAGE, ENGINE_STARTUP_ERROR_CAPTION, MB_ICONERROR);
+ warning("A fatal error occured during engine startup.");
AppEnd();
return 1;
}