aboutsummaryrefslogtreecommitdiff
path: root/video/codecs/smc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'video/codecs/smc.cpp')
-rw-r--r--video/codecs/smc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/codecs/smc.cpp b/video/codecs/smc.cpp
index d03c60490f..2b45a67360 100644
--- a/video/codecs/smc.cpp
+++ b/video/codecs/smc.cpp
@@ -49,7 +49,7 @@ namespace Video {
SMCDecoder::SMCDecoder(uint16 width, uint16 height) {
_surface = new Graphics::Surface();
- _surface->create(width, height, 1);
+ _surface->create(width, height, Graphics::PixelFormat::createFormatCLUT8());
}
SMCDecoder::~SMCDecoder() {