mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Add being able to use Shift+W to change warp dir backwards
A minor convenience, but a convenience is a convenience.
This commit is contained in:
parent
d2153aee87
commit
3947949ebb
1 changed files with 6 additions and 0 deletions
|
@ -4716,6 +4716,12 @@ void editorinput(void)
|
|||
ed.switch_enemy(true);
|
||||
ed.keydelay=6;
|
||||
}
|
||||
if (key.keymap[SDLK_w])
|
||||
{
|
||||
ed.switch_warpdir(true);
|
||||
graphics.backgrounddrawn = false;
|
||||
ed.keydelay = 6;
|
||||
}
|
||||
|
||||
if (up_pressed || down_pressed || left_pressed || right_pressed)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue