aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/agos/charset.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/agos/charset.cpp b/engines/agos/charset.cpp
index 7d5fd9c596..93d2ec7e58 100644
--- a/engines/agos/charset.cpp
+++ b/engines/agos/charset.cpp
@@ -2086,11 +2086,14 @@ void AGOSEngine::windowDrawChar(WindowBlock *window, uint x, uint y, byte chr) {
h = 8;
w = 6;
- // TODO: Add font tables for German and Spanish
+ // TODO: Add font tables for German, Italian and Spanish
switch (_language) {
case Common::ES_ESP:
src = english_commonFont + (chr - 0x20) * 8;
break;
+ case Common::IT_ITA:
+ src = english_commonFont + (chr - 0x20) * 8;
+ break;
case Common::FR_FRA:
src = french_commonFont + (chr - 0x20) * 8;
break;