Add an alternative button for jumping
This commit is contained in:
parent
d43dbfea61
commit
e4b1d7f947
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ pub const Brother = struct {
|
|||
self.y += self.vy * utils.frequency;
|
||||
if (self.y > 160)
|
||||
self.y = 160;
|
||||
} else if (gamepad.pressed.up) {
|
||||
} else if (gamepad.pressed.up or gamepad.pressed.x) {
|
||||
self.vy = -200;
|
||||
self.y += self.vy * utils.frequency;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue