File diff r2149:653fa1740f53 → r2150:8d17c2dcd791
news_gui.c
Show inline comments
 
@@ -579,7 +579,7 @@ static void DrawNewsString(int x, int y,
 
	/* Copy the just gotten string to another buffer to remove any formatting
 
	 * from it such as big fonts, etc. */
 
	for (ptr = buffer, dest = buffer2; *ptr != '\0'; ptr++) {
 
		if ((byte)*ptr == '\r') {
 
		if (*ptr == '\r') {
 
			dest[0] = dest[1] = dest[2] = dest[3] = ' ';
 
			dest += 4;
 
		} else if ((byte)*ptr >= ' ' && ((byte)*ptr < 0x88 || (byte)*ptr >= 0x99)) {