shithub: rgbds

Download patch

ref: 39c179aa325a9112d9cc3329fab96f1443e646d2
parent: 5c1ae4ce2211e3086b84100b5da21cef08dab6a3
author: Rangi <remy.oukaour+rangi42@gmail.com>
date: Wed Feb 17 08:14:02 EST 2021

Fix missing newline in a dbgPrint

--- a/src/asm/lexer.c
+++ b/src/asm/lexer.c
@@ -2339,7 +2339,7 @@
 		if (!lexerState->capturing) {
 			if (!yywrap())
 				goto restart;
-			dbgPrint("Reached end of input.");
+			dbgPrint("Reached end of input.\n");
 			return T_EOF;
 		}
 	}