aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource_v3.cpp
diff options
context:
space:
mode:
authorMax Horn2003-10-03 18:33:57 +0000
committerMax Horn2003-10-03 18:33:57 +0000
commitd7660a2662be298dad3cf9b320137dac8744d456 (patch)
treec80ddb2c4fb1917660db0010bb0b3d6ed8d57b24 /scumm/resource_v3.cpp
parenteabeb62e20a8ed2117e19ca3bf04bb1d33637b79 (diff)
downloadscummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.tar.gz
scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.tar.bz2
scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.zip
introduced namespace Scumm; made #include statements use scumm/ prefix explicitly
svn-id: r10571
Diffstat (limited to 'scumm/resource_v3.cpp')
-rw-r--r--scumm/resource_v3.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/scumm/resource_v3.cpp b/scumm/resource_v3.cpp
index 1404845885..308a044ae1 100644
--- a/scumm/resource_v3.cpp
+++ b/scumm/resource_v3.cpp
@@ -21,10 +21,11 @@
*/
#include "stdafx.h"
-#include "scumm.h"
-#include "intern.h"
-#include "resource.h"
+#include "scumm/scumm.h"
+#include "scumm/intern.h"
+#include "scumm/resource.h"
+namespace Scumm {
void ScummEngine_v3::readIndexFile() {
if (_features & GF_OLD_BUNDLE) {
@@ -226,3 +227,5 @@ void ScummEngine_v3::readGlobalObjects() {
_objectStateTable[i] = tmp >> OF_STATE_SHL;
}
}
+
+} // End of namespace Scumm