aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/colours.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/colours.h')
-rw-r--r--engines/sludge/colours.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sludge/colours.h b/engines/sludge/colours.h
index 503823fa27..2caf963590 100644
--- a/engines/sludge/colours.h
+++ b/engines/sludge/colours.h
@@ -23,6 +23,8 @@
#ifndef SLUDGE_COLOURS_H
#define SLUDGE_COLOURS_H
+namespace Sludge {
+
// Simple colour conversion routines to deal with 16-bit graphics
//unsigned short int makeColour (byte r, byte g, byte b);
@@ -44,4 +46,6 @@ inline unsigned short makeColour(unsigned short int r, unsigned short int g, uns
return ((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3);
}
+} // End of namespace Sludge
+
#endif