Corrected formatting in MapName.cpp
Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
parent
b19733f47e
commit
846d34eaf1
1 changed files with 5 additions and 4 deletions
|
@ -15,8 +15,9 @@ void ReadyMapName(const char *str)
|
||||||
int a;
|
int a;
|
||||||
|
|
||||||
//Handle "Studio Pixel presents" text in the intro
|
//Handle "Studio Pixel presents" text in the intro
|
||||||
unsigned char presentText[24] = {
|
unsigned char presentText[24] =
|
||||||
#ifdef JAPANESE
|
{
|
||||||
|
#ifdef JAPANESE
|
||||||
// "ŠJ”ŽºPixel presents"
|
// "ŠJ”ŽºPixel presents"
|
||||||
0x8A - 1, // ŠJ
|
0x8A - 1, // ŠJ
|
||||||
0x4A - 1,
|
0x4A - 1,
|
||||||
|
@ -38,7 +39,7 @@ void ReadyMapName(const char *str)
|
||||||
'n' - 1,
|
'n' - 1,
|
||||||
't' - 1,
|
't' - 1,
|
||||||
's' - 1,
|
's' - 1,
|
||||||
#else
|
#else
|
||||||
// " Studio Pixel presents"
|
// " Studio Pixel presents"
|
||||||
' ' - 1,
|
' ' - 1,
|
||||||
' ' - 1,
|
' ' - 1,
|
||||||
|
@ -63,7 +64,7 @@ void ReadyMapName(const char *str)
|
||||||
'n' - 1,
|
'n' - 1,
|
||||||
't' - 1,
|
't' - 1,
|
||||||
's' - 1,
|
's' - 1,
|
||||||
#endif
|
#endif
|
||||||
0xFF
|
0xFF
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue