Small fix to credits.

This commit is contained in:
onpon4 2015-02-26 19:27:38 -05:00
parent 491bb2641b
commit 9d43547982
3 changed files with 5 additions and 7 deletions

View File

@ -1,9 +1,7 @@
And so it was that in the year 2579 the galactic weapons corporation
WEAPCO was defeated. The people rejoiced that the darkness had
been lifted and once again the galaxy knew freedom.
Their prayers had been answered thanks to the valiant efforts of a few determined
WEAPCO was defeated thanks to the valiant efforts of a few determined
individuals; A cause that would be remembered throughout the rest of
human history as Project: Starfighter
human history as Project: Starfighter.
158
000 +++ CAST +++
030 Chris Bainfield

View File

@ -325,7 +325,7 @@ void getPlayerInput()
break;
case SDL_KEYUP:
if (engine.event.key.keysym.sym != SDLK_p && engine.event.key.keysym.sym != SDLK_t)
if (engine.event.key.keysym.sym != SDLK_p)
engine.keyState[mapkey(engine.event.key.keysym.sym)] = 0;
break;

View File

@ -676,7 +676,7 @@ void doCredits()
fp = fopen("data/credits.txt", "rb");
for (int i = 0 ; i < 6 ; i++)
for (int i = 0 ; i < 4 ; i++)
{
fscanf(fp, "%[^\n]%*c", text);
drawString(text, -1, 240 + (i * 20), FONT_WHITE);
@ -704,7 +704,7 @@ void doCredits()
}
updateScreen();
SDL_Delay(10000);
SDL_Delay(20000);
drawBackGround();
engine.done = 0;