From 3ab3171287154a384361070fc2da8e3c3c8ef9d7 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Thu, 27 Mar 2025 13:10:07 -0500 Subject: [PATCH] replace buffer print which doesn't refresh with LOG() --- src/game/boe.actions.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/game/boe.actions.cpp b/src/game/boe.actions.cpp index 31a75d33..32c5c8a6 100644 --- a/src/game/boe.actions.cpp +++ b/src/game/boe.actions.cpp @@ -4184,8 +4184,7 @@ void preview_every_dialog_xml() { std::string confirm = dlog.show(); if(confirm == "yes"){ std::for_each(dialog_paths.begin(), dialog_paths.end(), [](fs::path path) { - ASB("Previewing dialog: " + path.stem().string()); - print_buf(); + LOG("Previewing dialog: " + path.stem().string()); preview_dialog_xml(path); }); }