Switch the action buttons around, so the button is next to the part of the screen it affects

master
Paul Cockrell 2020-04-07 16:41:04 +01:00
parent b5a9b9306a
commit b9361c55fe
2 changed files with 4 additions and 4 deletions

View File

@ -12,8 +12,8 @@ Enjoy watching Mario, or one of the other game characters run through a level wh
* Smooth animation
* Awesome 8-bit style grey-scale graphics
* Mario jumps to change the time, every minute
* You can make Mario jump by pressing the top button (Button 1) on the watch
* Toggle the info pannel bettween `Date`, `Battery level`, and `Temperature` by pressing the bottom button (Button 3).
* You can make Mario jump by pressing the bottom button (Button 3) on the watch
* Toggle the info pannel bettween `Date`, `Battery level`, and `Temperature` by pressing the top button (Button 1).
## Requests

View File

@ -450,7 +450,7 @@ function init() {
setWatch(() => {
if (intervalRef && !characterSprite.isJumping) characterSprite.isJumping = true;
resetDisplayTimeout();
}, BTN1, {repeat: true});
}, BTN3, {repeat: true});
// Close watch and load launcher app
setWatch(() => {
@ -461,7 +461,7 @@ function init() {
// Change info mode
setWatch(() => {
changeInfoMode();
}, BTN3, {repeat: true});
}, BTN1, {repeat: true});
Bangle.on('lcdPower', (on) => on ? startTimers() : clearTimers());