aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/processor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/frotz/processor.cpp')
-rw-r--r--engines/glk/frotz/processor.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/glk/frotz/processor.cpp b/engines/glk/frotz/processor.cpp
index 8e719e2bf5..fdfafaa3bd 100644
--- a/engines/glk/frotz/processor.cpp
+++ b/engines/glk/frotz/processor.cpp
@@ -22,6 +22,7 @@
#include "glk/frotz/processor.h"
#include "glk/frotz/frotz.h"
+#include "glk/conf.h"
namespace Glk {
namespace Frotz {
@@ -197,6 +198,11 @@ void Processor::initialize() {
op0_opcodes[9] = &Processor::z_catch;
op1_opcodes[15] = &Processor::z_call_n;
}
+
+ PropFontInfo &pi = g_conf->_propInfo;
+ _quotes = pi._quotes;
+ _dashes = pi._quotes;
+ _spaces = pi._spaces;
}
void Processor::load_operand(zbyte type) {