aboutsummaryrefslogtreecommitdiff
path: root/scumm/base-costume.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/base-costume.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/base-costume.cpp')
-rw-r--r--scumm/base-costume.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm/base-costume.cpp b/scumm/base-costume.cpp
index 3be38f1745..67fb8eaf3d 100644
--- a/scumm/base-costume.cpp
+++ b/scumm/base-costume.cpp
@@ -21,8 +21,9 @@
*/
#include "stdafx.h"
-#include "base-costume.h"
+#include "scumm/base-costume.h"
+namespace Scumm {
byte BaseCostumeRenderer::drawCostume(const CostumeData &cost) {
int i;
@@ -59,3 +60,5 @@ void BaseCostumeRenderer::codec1_ignorePakCols(int num) {
} while (--v1.replen);
} while (1);
}
+
+} // End of namespace Scumm