Small fix to credits.
This commit is contained in:
parent
491bb2641b
commit
9d43547982
|
@ -1,9 +1,7 @@
|
||||||
And so it was that in the year 2579 the galactic weapons corporation
|
And so it was that in the year 2579 the galactic weapons corporation
|
||||||
WEAPCO was defeated. The people rejoiced that the darkness had
|
WEAPCO was defeated thanks to the valiant efforts of a few determined
|
||||||
been lifted and once again the galaxy knew freedom.
|
|
||||||
Their prayers had been answered thanks to the valiant efforts of a few determined
|
|
||||||
individuals; A cause that would be remembered throughout the rest of
|
individuals; A cause that would be remembered throughout the rest of
|
||||||
human history as Project: Starfighter
|
human history as Project: Starfighter.
|
||||||
158
|
158
|
||||||
000 +++ CAST +++
|
000 +++ CAST +++
|
||||||
030 Chris Bainfield
|
030 Chris Bainfield
|
||||||
|
|
|
@ -325,7 +325,7 @@ void getPlayerInput()
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SDL_KEYUP:
|
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;
|
engine.keyState[mapkey(engine.event.key.keysym.sym)] = 0;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
@ -676,7 +676,7 @@ void doCredits()
|
||||||
|
|
||||||
fp = fopen("data/credits.txt", "rb");
|
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);
|
fscanf(fp, "%[^\n]%*c", text);
|
||||||
drawString(text, -1, 240 + (i * 20), FONT_WHITE);
|
drawString(text, -1, 240 + (i * 20), FONT_WHITE);
|
||||||
|
@ -704,7 +704,7 @@ void doCredits()
|
||||||
}
|
}
|
||||||
|
|
||||||
updateScreen();
|
updateScreen();
|
||||||
SDL_Delay(10000);
|
SDL_Delay(20000);
|
||||||
drawBackGround();
|
drawBackGround();
|
||||||
|
|
||||||
engine.done = 0;
|
engine.done = 0;
|
||||||
|
|
Loading…
Reference in New Issue