mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 09:54:10 +03:00
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:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user