mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 10:09:43 +01:00
Re-remove 1-frame input delay
To do this, GAMEMODE input needs to be processed, and Viridian needs to be moved, in the same sequence between render frames. So just move gameinput to after gamerender. Yes, this is not 2.2 order, but gameinput only handles player input and nothing else - plus a 1-frame input delay feels really awful to play with in over-30-mode.
This commit is contained in:
parent
f1f434accc
commit
d5d9d9ba96
1 changed files with 1 additions and 1 deletions
|
@ -139,9 +139,9 @@ static const inline struct ImplFunc* get_gamestate_funcs(
|
|||
|
||||
FUNC_LIST_BEGIN(GAMEMODE)
|
||||
{Func_fixed, runscript},
|
||||
{Func_input, gameinput},
|
||||
{Func_fixed, gamerenderfixed},
|
||||
{Func_delta, gamerender},
|
||||
{Func_input, gameinput},
|
||||
{Func_fixed, gamelogic},
|
||||
FUNC_LIST_END
|
||||
|
||||
|
|
Loading…
Reference in a new issue