Fix buggy first line of a script in ADV mode

This commit is contained in:
Jáchym Toušek
2017-05-18 20:53:31 +02:00
parent 2b12cc52af
commit b61fa0ab60
39 changed files with 39 additions and 40 deletions

View File

@@ -5,7 +5,6 @@ void main()
int Line_ModeSpecific;
if (AdvMode) {
Line_ModeSpecific = Line_Normal;
OutputLineAll(NULL, "", Line_ContinueAfterTyping);
} else {
Line_ModeSpecific = Line_WaitForInput;
}
@@ -33,6 +32,7 @@ void main()
DrawSceneWithMask( "bg_027", "up", 0, 0, 1300 );
// この学校は、学校として機能しているのか本当に怪しい¥
if (AdvMode) { OutputLineAll("", NULL, Line_ContinueAfterTyping); }
OutputLine(NULL, " この学校は、学校として機能しているのか本当に怪しい。",
NULL, "The function of this school as an educational facility is very questionable.", Line_Normal);
ClearMessage();