diff options
author | Paweł Kołodziejski | 2008-03-09 21:07:02 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2008-03-09 21:07:02 +0000 |
commit | b1f1447234a5daf45f51336e7082af4c0bd151a1 (patch) | |
tree | 8c6ea64f81077ab50ff4b71f760759cd2676977c /engines/drascula | |
parent | bfe006b9cfc83814290c82fa82dfea00c385227e (diff) | |
download | scummvm-rg350-b1f1447234a5daf45f51336e7082af4c0bd151a1.tar.gz scummvm-rg350-b1f1447234a5daf45f51336e7082af4c0bd151a1.tar.bz2 scummvm-rg350-b1f1447234a5daf45f51336e7082af4c0bd151a1.zip |
engine as now as reference for future changes.
ignore char ' for now as i can't find proper font char.
svn-id: r31098
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/drascula.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index 7e26e38fa0..bbc4f071bb 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -2257,10 +2257,10 @@ void DrasculaEngine::print_abc(const char *dicho, int x_pantalla, int y_pantalla x_de_letra = X_CIERRA_INTERROGACION; else if (c == 0xa8) x_de_letra = X_ABRE_INTERROGACION; +// else if (c == '\'') // FIXME +// x_de_letra = ESPACIO; // space for now else if (c == '"') x_de_letra = X_COMILLAS; - else if (c == '\'') // FIXME - x_de_letra = X_GN; else if (c == '!') x_de_letra = X_CIERRA_EXCLAMACION; else if (c == 0xad) @@ -5808,10 +5808,6 @@ void DrasculaEngine::print_abc_opc(const char *dicho, int x_pantalla, int y_pant x_de_letra = X_M_OPC; else if (c == 'N') x_de_letra = X_N_OPC; - else if (c == '\'') - x_de_letra = X_GN_OPC; - else if (c == '\'') - x_de_letra = X_GN_OPC; else if (c == 'O') x_de_letra = X_O_OPC; else if (c == 'P') @@ -5850,6 +5846,8 @@ void DrasculaEngine::print_abc_opc(const char *dicho, int x_pantalla, int y_pant x_de_letra = X_CIERRA_INTERROGACION_OPC; else if (c == 0xa8) x_de_letra = X_ABRE_INTERROGACION_OPC; +// else if (c == '\'') // FIXME +// x_de_letra = ESPACIO; // space for now else if (c == '"') x_de_letra = X_COMILLAS_OPC; else if (c == '!') |