logical error in translation

"everything below" in the top half would include the bottom half, and
"everything above" in the bottom half would include the top half.
This is an obvious logical inconsistency (since both halves are intact,
with some lines in the middle missing).
This commit is contained in:
Norgus
2015-12-20 16:28:25 +00:00
parent af267a655c
commit d222543448

View File

@@ -2134,7 +2134,7 @@ void main()
//(ここまでが1枚目。ここから下は真横に破られている。) //(ここまでが1枚目。ここから下は真横に破られている。)
OutputLine(NULL, "(ここまでが1枚目。ここから下は真横に破られている。)", OutputLine(NULL, "(ここまでが1枚目。ここから下は真横に破られている。)",
NULL, "(This is all on the first sheet. Everything below this has been ripped out.)", Line_ContinueAfterTyping); NULL, "(This is all on the first sheet. The section below this has been ripped out.)", Line_ContinueAfterTyping);
FadeOutBGM( 2, 10, TRUE ); FadeOutBGM( 2, 10, TRUE );
SetValidityOfInput( FALSE ); SetValidityOfInput( FALSE );
@@ -2150,7 +2150,7 @@ void main()
PlayBGM( 2, "lsys24", 128, 0 ); PlayBGM( 2, "lsys24", 128, 0 );
//(ここからが2枚目。ここから上が真横に破られている。) //(ここからが2枚目。ここから上が真横に破られている。)
OutputLine(NULL, "(ここからが2枚目。ここから上が真横に破られている。)", OutputLine(NULL, "(ここからが2枚目。ここから上が真横に破られている。)",
NULL, "(This is from the second sheet. Everything above this has been ripped out.)", Line_ContinueAfterTyping); NULL, "(This is from the second sheet. The section above this has been ripped out.)", Line_ContinueAfterTyping);
FadeOutBGM( 2, 10, TRUE ); FadeOutBGM( 2, 10, TRUE );
SetValidityOfInput( FALSE ); SetValidityOfInput( FALSE );