aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/thumbnail.cpp
diff options
context:
space:
mode:
authoryinsimei2017-05-26 21:25:11 +0200
committerEugene Sandulenko2017-07-13 18:27:45 +0200
commitc4a5af22eac930b5ed8e04fede2b9e61a76ca5d6 (patch)
treed618a93acee85b1036e397604b306ff9579b7a00 /engines/sludge/thumbnail.cpp
parent219044abf9841461043d6e2acf0d5a48a7c7648b (diff)
downloadscummvm-rg350-c4a5af22eac930b5ed8e04fede2b9e61a76ca5d6.tar.gz
scummvm-rg350-c4a5af22eac930b5ed8e04fede2b9e61a76ca5d6.tar.bz2
scummvm-rg350-c4a5af22eac930b5ed8e04fede2b9e61a76ca5d6.zip
SLUDGE: Add namespace
Diffstat (limited to 'engines/sludge/thumbnail.cpp')
-rw-r--r--engines/sludge/thumbnail.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/sludge/thumbnail.cpp b/engines/sludge/thumbnail.cpp
index 53ab7ecfb9..9cb471f2d6 100644
--- a/engines/sludge/thumbnail.cpp
+++ b/engines/sludge/thumbnail.cpp
@@ -19,8 +19,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
-#include <stdint.h>
-
#include "allfiles.h"
#include "errors.h"
#include "moreio.h"
@@ -31,6 +29,8 @@
#include "graphics.h"
#include "newfatal.h"
+namespace Sludge {
+
bool freeze();
void unfreeze(bool); // Because FREEZE.H needs a load of other includes
@@ -264,3 +264,5 @@ bool skipThumbnail(FILE *fp) {
return (fgetc(fp) == '!');
}
#endif
+
+} // End of namespace Sludge