diff options
Diffstat (limited to 'scumm/smush')
-rw-r--r-- | scumm/smush/smush_font.cpp | 4 | ||||
-rw-r--r-- | scumm/smush/smush_player.cpp | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/scumm/smush/smush_font.cpp b/scumm/smush/smush_font.cpp index f8ee6a0127..4301af5536 100644 --- a/scumm/smush/smush_font.cpp +++ b/scumm/smush/smush_font.cpp @@ -19,6 +19,8 @@ * */ +#ifndef DISABLE_SCUMM_7_8 + #include "common/stdafx.h" #include "common/file.h" #include "scumm/scumm.h" @@ -265,3 +267,5 @@ void SmushFont::drawStringWrap(const char *str, byte *buffer, int dst_width, int } } // End of namespace Scumm + +#endif diff --git a/scumm/smush/smush_player.cpp b/scumm/smush/smush_player.cpp index 8c3db2f1ad..a93e96dea6 100644 --- a/scumm/smush/smush_player.cpp +++ b/scumm/smush/smush_player.cpp @@ -18,6 +18,8 @@ * $Header$ * */ + +#ifndef DISABLE_SCUMM_7_8 #include "common/stdafx.h" @@ -1308,3 +1310,5 @@ void SmushPlayer::play(const char *filename, int32 offset, int32 startFrame) { } } // End of namespace Scumm + +#endif |