shithub: cstory

Download patch

ref: 846d34eaf1b622a415c5b4dc09081e8d4c531f63
parent: b19733f47e6657ccaac7d4b22968dd33ba69cbe2
author: Gabriel Ravier <gabravier@gmail.com>
date: Wed May 8 05:35:36 EDT 2019

Corrected formatting in MapName.cpp

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>

--- a/src/MapName.cpp
+++ b/src/MapName.cpp
@@ -15,8 +15,9 @@
 	int a;
 
 	//Handle "Studio Pixel presents" text in the intro
-	unsigned char presentText[24] = {
-	#ifdef JAPANESE
+	unsigned char presentText[24] =
+	{
+#ifdef JAPANESE
 		// "�J����Pixel presents"
 		0x8A - 1,	// �J
 		0x4A - 1,
@@ -38,7 +39,7 @@
 		'n' - 1,
 		't' - 1,
 		's' - 1,
-	#else
+#else
 		// "  Studio Pixel presents"
 		' ' - 1,
 		' ' - 1,
@@ -63,7 +64,7 @@
 		'n' - 1,
 		't' - 1,
 		's' - 1,
-	#endif
+#endif
 		0xFF
 	};