From 2a117d9a90df395a388919d2734024d19f24b8f3 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 7 Jul 2009 19:00:51 +0000 Subject: [PATCH] Add guards to only include SJIS font code, when KYRA or SCI is enabled. svn-id: r42233 --- graphics/sjis.cpp | 8 ++++++++ graphics/sjis.h | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/graphics/sjis.cpp b/graphics/sjis.cpp index 176ec8eda50..7459c98f6cf 100644 --- a/graphics/sjis.cpp +++ b/graphics/sjis.cpp @@ -22,6 +22,12 @@ * $Id$ */ +// The code in this files is currently only used in KYRA and SCI. +// So if no of those is enabled, we will not compile it. +// If you plan to use this code in another engine, you will have +// to add the proper defined check here and in sjis.h +#if defined(ENABLE_KYRA) || defined(ENABLE_SCI) + #include "graphics/sjis.h" #include "common/debug.h" @@ -191,3 +197,5 @@ uint FontTowns::sjisToChunk(uint8 f, uint8 s) { } // end of namespace Graphics +#endif // defined(ENABLE_KYRA) || defined(ENABLE_SCI) + diff --git a/graphics/sjis.h b/graphics/sjis.h index c7eeeed9f6c..ca5fc950043 100644 --- a/graphics/sjis.h +++ b/graphics/sjis.h @@ -22,6 +22,12 @@ * $Id$ */ +// The code in this files is currently only used in KYRA and SCI. +// So if no of those is enabled, we will not compile it. +// If you plan to use this code in another engine, you will have +// to add the proper defined check here and in sjis.cpp +#if defined(ENABLE_KYRA) || defined(ENABLE_SCI) + #ifndef GRAPHICS_SJIS_H #define GRAPHICS_SJIS_H @@ -123,3 +129,5 @@ private: #endif +#endif // defined(ENABLE_KYRA) || defined(ENABLE_SCI) +