aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush/codec37.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/smush/codec37.cpp')
-rw-r--r--scumm/smush/codec37.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/smush/codec37.cpp b/scumm/smush/codec37.cpp
index c2fa816045..0a748036a4 100644
--- a/scumm/smush/codec37.cpp
+++ b/scumm/smush/codec37.cpp
@@ -24,6 +24,8 @@
#include "scumm/bomp.h"
#include "scumm/smush/codec37.h"
+namespace Scumm {
+
void Codec37Decoder::init(int width, int height) {
deinit();
_width = width;
@@ -512,3 +514,5 @@ void Codec37Decoder::decode(byte *dst, const byte *src) {
memcpy(dst, _deltaBufs[_curtable], _frameSize);
}
+} // End of namespace Scumm
+