aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/utils/crc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/utils/crc.cpp')
-rw-r--r--engines/wintermute/utils/crc.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/wintermute/utils/crc.cpp b/engines/wintermute/utils/crc.cpp
index 933857e066..c127d08417 100644
--- a/engines/wintermute/utils/crc.cpp
+++ b/engines/wintermute/utils/crc.cpp
@@ -17,6 +17,7 @@
#include "engines/wintermute/utils/crc.h"
+namespace WinterMute {
/*
* Derive parameters from the standard-specific parameters in crc.h.
@@ -232,3 +233,5 @@ crc crc_process_byte(unsigned char byteVal, crc remainder) {
crc crc_finalize(crc remainder) {
return (REFLECT_REMAINDER(remainder) ^ FINAL_XOR_VALUE);
}
+
+} // end of namespace WinterMute