Fix two spelling errors.
This commit is contained in:
parent
6bfba4064b
commit
81905236cc
|
@ -40,7 +40,7 @@ void createCommsSurface(SDL_Surface *comms)
|
||||||
|
|
||||||
blevelRect(comms, 0, 0, comms->w - 1, comms->h - 1, 0x00, 0x00, 0x25);
|
blevelRect(comms, 0, 0, comms->w - 1, comms->h - 1, 0x00, 0x00, 0x25);
|
||||||
|
|
||||||
drawString("+++ RECIEVED MESSAGES +++", 115, 80, FONT_GREEN, comms);
|
drawString("+++ RECEIVED MESSAGES +++", 115, 80, FONT_GREEN, comms);
|
||||||
|
|
||||||
int yOffset;
|
int yOffset;
|
||||||
|
|
||||||
|
|
|
@ -332,7 +332,7 @@ int doTitle()
|
||||||
if (!skip)
|
if (!skip)
|
||||||
{
|
{
|
||||||
drawString("Copyright Parallel Realities 2003", 5, 580, FONT_WHITE, background);
|
drawString("Copyright Parallel Realities 2003", 5, 580, FONT_WHITE, background);
|
||||||
drawString(buildVersion, 695, 580, FONT_WHITE, background);
|
drawString(buildVersion, 794 - strlen(buildVersion) * 9, 580, FONT_WHITE, background);
|
||||||
addBuffer(0, 580, 800, 20);
|
addBuffer(0, 580, 800, 20);
|
||||||
skip = true;
|
skip = true;
|
||||||
}
|
}
|
||||||
|
@ -353,7 +353,7 @@ int doTitle()
|
||||||
if ((now - then <= 27500) && (!skip))
|
if ((now - then <= 27500) && (!skip))
|
||||||
{
|
{
|
||||||
drawString("Copyright Parallel Realities 2003", 5, 580, FONT_WHITE, background);
|
drawString("Copyright Parallel Realities 2003", 5, 580, FONT_WHITE, background);
|
||||||
drawString(buildVersion, 695, 580, FONT_WHITE, background);
|
drawString(buildVersion, 794 - strlen(buildVersion) * 9, 580, FONT_WHITE, background);
|
||||||
addBuffer(0, 580, 800, 20);
|
addBuffer(0, 580, 800, 20);
|
||||||
skip = true;
|
skip = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue