[Scummvm-git-logs] scummvm master -> e7c57c3d932682ea1cb36996049a5d9cee69e723

dreammaster paulfgilbert at gmail.com
Tue May 12 01:33:25 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
e7c57c3d93 ULTIMA4: Ensure all NPC conversations end on a new line


Commit: e7c57c3d932682ea1cb36996049a5d9cee69e723
    https://github.com/scummvm/scummvm/commit/e7c57c3d932682ea1cb36996049a5d9cee69e723
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2020-05-11T18:33:14-07:00

Commit Message:
ULTIMA4: Ensure all NPC conversations end on a new line

Changed paths:
    engines/ultima/ultima4/core/debugger_actions.cpp


diff --git a/engines/ultima/ultima4/core/debugger_actions.cpp b/engines/ultima/ultima4/core/debugger_actions.cpp
index b2cfa2d1cd..63c750a0b5 100644
--- a/engines/ultima/ultima4/core/debugger_actions.cpp
+++ b/engines/ultima/ultima4/core/debugger_actions.cpp
@@ -354,6 +354,10 @@ bool DebuggerActions::talkAt(const Coords &coords) {
 	conv._playerInput.clear();
 	talkRunConversation(conv, talker, false);
 
+	// Ensure the end of the conversation ends the line
+	if (g_context->_col != 0)
+		g_screen->screenMessage("\n");
+
 	return true;
 }
 




More information about the Scummvm-git-logs mailing list