aboutsummaryrefslogtreecommitdiff
path: root/scumm/nut_renderer.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/nut_renderer.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/nut_renderer.cpp')
-rw-r--r--scumm/nut_renderer.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/scumm/nut_renderer.cpp b/scumm/nut_renderer.cpp
index bae21dfbb4..a75166a76f 100644
--- a/scumm/nut_renderer.cpp
+++ b/scumm/nut_renderer.cpp
@@ -19,11 +19,13 @@
*/
#include "stdafx.h"
-#include "scumm.h"
-#include "nut_renderer.h"
-#include "bomp.h"
+#include "scumm/scumm.h"
+#include "scumm/nut_renderer.h"
+#include "scumm/bomp.h"
+namespace Scumm {
+
NutRenderer::NutRenderer(ScummEngine *vm) :
_vm(vm),
_initialized(false),
@@ -345,3 +347,5 @@ void NutRenderer::draw2byte(byte *dst, byte *mask, int c, int x, int y, byte col
mask += _vm->gdi._numStrips;
}
}
+
+} // End of namespace Scumm