aboutsummaryrefslogtreecommitdiff
path: root/scumm/charset.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/charset.cpp')
-rw-r--r--scumm/charset.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp
index 0cf0ad8f27..6461775a1a 100644
--- a/scumm/charset.cpp
+++ b/scumm/charset.cpp
@@ -22,7 +22,6 @@
#include "scumm/charset.h"
#include "scumm/scumm.h"
#include "scumm/nut_renderer.h"
-#include "base/gameDetector.h"
namespace Scumm {
@@ -868,16 +867,16 @@ static byte spanishCharsetDataV2[] = {
void CharsetRendererV2::setCurID(byte id) {
switch (_vm->_language) {
- case DE_DEU:
+ case Common::DE_DEU:
_fontPtr = germanCharsetDataV2;
break;
- case FR_FRA:
+ case Common::FR_FRA:
_fontPtr = frenchCharsetDataV2;
break;
- case IT_ITA:
+ case Common::IT_ITA:
_fontPtr = italianCharsetDataV2;
break;
- case ES_ESP:
+ case Common::ES_ESP:
_fontPtr = spanishCharsetDataV2;
break;
default: