From 623b2432873818bcf33ddfd0dcdb2114dc4c41d8 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Wed, 5 Jul 2023 07:16:50 -0700 Subject: [PATCH] Updating prologue --- src/dawntools/vnscenetool/VNSceneGen.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/dawntools/vnscenetool/VNSceneGen.cpp b/src/dawntools/vnscenetool/VNSceneGen.cpp index bd74a32e..38a01ac1 100644 --- a/src/dawntools/vnscenetool/VNSceneGen.cpp +++ b/src/dawntools/vnscenetool/VNSceneGen.cpp @@ -84,11 +84,12 @@ void VNSceneGen::test( case VN_SCENE_EVENT_TYPE_CHOICES: { initType = "VNChoiceEvent"; toInclude = "games/vn/events/VNChoiceEvent.hpp"; + line(&afterLines, eventName + "->key = \"" + event->choices.key+ "\";", ""); - line(&afterLines, eventName + "->text = \"" + event->choices.titles.begin()->text + "\";", ""); + line(&afterLines, eventName + "->text = " + event->choices.titles.begin()->text + ";", ""); auto itChoices = event->choices.choices.begin(); while(itChoices != event->choices.choices.end()) { - line(&afterLines, eventName + "->choices[\"" + itChoices->value + "\"] = \"" + itChoices->texts.begin()->text + "\";", ""); + line(&afterLines, eventName + "->choices[\"" + itChoices->value + "\"] = " + itChoices->texts.begin()->text + ";", ""); ++itChoices; } break;