Integrate dynamic list sizes for credited patrons, add CONTRIBUTORS to credits

(Also added myself to the credits, only took 6 years to not be lazy about it)
This commit is contained in:
Ethan Lee
2020-01-16 20:14:56 -05:00
parent 73335c347c
commit 2aa4aa5f8a
5 changed files with 148 additions and 83 deletions

View File

@@ -2478,13 +2478,13 @@ void gamecompleteinput(KeyPoll& key, Graphics& dwgfx, Game& game, mapclass& map,
if (key.isDown(KEYBOARD_z) || key.isDown(KEYBOARD_SPACE) || key.isDown(KEYBOARD_v) || key.isDown(game.controllerButton_flip))
{
game.creditposition -= 6;
if (game.creditposition <= -1650)
if (game.creditposition <= -game.creditmaxposition)
{
if(dwgfx.fademode==0)
{
dwgfx.fademode = 2;
}
game.creditposition = -1650;
game.creditposition = -game.creditmaxposition;
}
else
{