diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2022-05-26 02:32:18 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2022-05-26 02:32:18 +0100 |
commit | dacb42286f41065c495b685a73ac6885dba3dcd8 (patch) | |
tree | 7884fcef469a77ef8548e52faca5bdae80d5111a /src | |
parent | 8d8202990d0b63277fe095cc4b649d9de87d3893 (diff) |
Fix a dumb mistake I didn't check before pushing
Diffstat (limited to 'src')
-rw-r--r-- | src/autojump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/autojump.c b/src/autojump.c index bba5eb4..590b916 100644 --- a/src/autojump.c +++ b/src/autojump.c @@ -55,7 +55,7 @@ static bool VCALLCONV hookcl(void *this) { // prediction in general wrong, so this'll need more work to do totally // properly. //if (con_getvari(sst_autojump) && !justjumped[0]) mv->oldbuttons &= ~IN_JUMP; - mv->oldbuttons &= ~IN_JUMP; + if (con_getvari(sst_autojump)) mv->oldbuttons &= ~IN_JUMP; return justjumped[0] = origcl(this); } |