File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2655,19 +2655,19 @@ def update(self, events: EventVectorType) -> bool:
2655
2655
2656
2656
elif self ._ctrl .joy_down (event , self ):
2657
2657
if self ._current ._up (apply_sound = True ):
2658
- self ._current ._last_update_mode = [ _events .MENU_LAST_MOVE_UP ]
2658
+ self ._current ._last_update_mode . append ( _events .MENU_LAST_MOVE_UP )
2659
2659
updated = True
2660
2660
break
2661
2661
2662
2662
elif self ._ctrl .joy_left (event , self ):
2663
2663
if self ._current ._left (apply_sound = True ):
2664
- self ._current ._last_update_mode = [ _events .MENU_LAST_MOVE_LEFT ]
2664
+ self ._current ._last_update_mode . append ( _events .MENU_LAST_MOVE_LEFT )
2665
2665
updated = True
2666
2666
break
2667
2667
2668
2668
elif self ._ctrl .joy_right (event , self ):
2669
2669
if self ._current ._right (apply_sound = True ):
2670
- self ._current ._last_update_mode = [ _events .MENU_LAST_MOVE_RIGHT ]
2670
+ self ._current ._last_update_mode . append ( _events .MENU_LAST_MOVE_RIGHT )
2671
2671
updated = True
2672
2672
break
2673
2673
Original file line number Diff line number Diff line change @@ -33,6 +33,6 @@ def __str__(self) -> str:
33
33
patch = property (lambda self : self [2 ])
34
34
35
35
36
- vernum = Version (4 , 5 , 3 )
36
+ vernum = Version (4 , 5 , 4 )
37
37
ver = str (vernum )
38
38
rev = ''
You can’t perform that action at this time.
0 commit comments