aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2007-04-27 22:39:31 +0000
committerMax Horn2007-04-27 22:39:31 +0000
commit030cd2c02a188bbd166458599767ad720e85af02 (patch)
tree1d1831c15a63a24d66ab6650ed6bff2c7351ad53
parent3924a2587fd3db6e1891cfcec51471410470bdff (diff)
downloadscummvm-rg350-030cd2c02a188bbd166458599767ad720e85af02.tar.gz
scummvm-rg350-030cd2c02a188bbd166458599767ad720e85af02.tar.bz2
scummvm-rg350-030cd2c02a188bbd166458599767ad720e85af02.zip
Some tweaks to saga/detection_tables.h
svn-id: r26633
-rw-r--r--engines/saga/detection.cpp8
-rw-r--r--engines/saga/detection_tables.h28
2 files changed, 30 insertions, 6 deletions
diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp
index b14cd2ea64..a3df92dffb 100644
--- a/engines/saga/detection.cpp
+++ b/engines/saga/detection.cpp
@@ -1,5 +1,5 @@
/* ScummVM - Scumm Interpreter
- * Copyright (C) 2004-2006 The ScummVM project
+ * Copyright (C) 2004-2007 The ScummVM project
*
* The ReInherit Engine is (C)2000-2003 by Daniel Balsom.
*
@@ -94,11 +94,7 @@ static const Common::ADObsoleteGameID obsoleteGameIDsTable[] = {
{0, 0, Common::kPlatformUnknown}
};
-namespace Saga {
-
-#include "detection_tables.h"
-
-}
+#include "saga/detection_tables.h"
static const Common::ADParams detectionParams = {
// Pointer to ADGameDescription or its superset structure
diff --git a/engines/saga/detection_tables.h b/engines/saga/detection_tables.h
index db13831669..b219f5d529 100644
--- a/engines/saga/detection_tables.h
+++ b/engines/saga/detection_tables.h
@@ -1,3 +1,29 @@
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004-2007 The ScummVM project
+ *
+ * The ReInherit Engine is (C)2000-2003 by Daniel Balsom.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+namespace Saga {
+
#define ITE_CONVERSE_MAX_TEXT_WIDTH (256 - 60)
#define ITE_CONVERSE_TEXT_HEIGHT 10
#define ITE_CONVERSE_TEXT_LINES 4
@@ -1460,3 +1486,5 @@ static const SAGAGameDescription gameDescriptions[] = {
},
{ AD_TABLE_END_MARKER, 0, 0, 0, NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, 0, NULL }
};
+
+}