diff options
author | Matthew Hoops | 2012-09-17 12:54:08 -0400 |
---|---|---|
committer | Matthew Hoops | 2012-09-17 19:30:46 -0400 |
commit | 893a2b37ff651e69699879932fe70895a28951fa (patch) | |
tree | dd1ca1e116c46849bee52a24f3c08454858b4f6e /base | |
parent | 03d34f1f927cc3ac16f3f500688239f7b2f1fc8a (diff) | |
download | scummvm-rg350-893a2b37ff651e69699879932fe70895a28951fa.tar.gz scummvm-rg350-893a2b37ff651e69699879932fe70895a28951fa.tar.bz2 scummvm-rg350-893a2b37ff651e69699879932fe70895a28951fa.zip |
GRAPHICS: Rework YUV->RGB code a bit
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/main.cpp b/base/main.cpp index f538243f48..355a65f883 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -57,6 +57,7 @@ #include "graphics/cursorman.h" #include "graphics/fontman.h" +#include "graphics/yuv_to_rgb.h" #ifdef USE_FREETYPE2 #include "graphics/fonts/ttf.h" #endif @@ -512,6 +513,7 @@ extern "C" int scummvm_main(int argc, const char * const argv[]) { Graphics::shutdownTTF(); #endif EngineManager::destroy(); + Graphics::YUVToRGBManager::destroy(); return 0; } |