From 490fbd8b266bdf8a562f8d98b33b76d44174721f Mon Sep 17 00:00:00 2001 From: Japa Date: Tue, 27 Feb 2018 21:18:15 +0530 Subject: [PATCH] send instrument description using UTF8 --- plugins/remotefortressreader/item_reader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/remotefortressreader/item_reader.cpp b/plugins/remotefortressreader/item_reader.cpp index 70f499598..9adfbced2 100644 --- a/plugins/remotefortressreader/item_reader.cpp +++ b/plugins/remotefortressreader/item_reader.cpp @@ -638,7 +638,7 @@ DFHack::command_result GetItemList(DFHack::color_ostream &stream, const DFHack:: reg->set_pitch_range_min(instrument->registers[j]->pitch_range_min); reg->set_pitch_range_max(instrument->registers[j]->pitch_range_max); } - send_instrument->set_description(instrument->description); + send_instrument->set_description(DF2UTF(instrument->description)); break; } default: