Bugfix en ventana_log

Antes solo imprimía una cantidad limitada de caracteres
parent f97b6369
Showing with 1 additions and 1 deletions
...@@ -12,7 +12,7 @@ namespace PAG { ...@@ -12,7 +12,7 @@ namespace PAG {
if (ImGui::Begin("Mensajes")) { if (ImGui::Begin("Mensajes")) {
ImGui::SetWindowFontScale(1.0); ImGui::SetWindowFontScale(1.0);
ImGui::Text(PAG::log.str().c_str()); ImGui::Text("%s", PAG::log.str().c_str());
} }
ImGui::End(); ImGui::End();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment