1010
Check-in [58336f3d16]
Not logged in
Public Repositories
mwm's Repositories

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Stop using the left button to switch out of select mode. Use A instead.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 58336f3d1652eb31ea56d051c5850d30abacb1a5
User & Date: mwm 2016-11-02 00:45:52.615
Context
2016-11-04
07:42
Add the game instructions check-in: 7719960b1d user: mwm tags: trunk
2016-11-02
00:45
Stop using the left button to switch out of select mode. Use A instead. check-in: 58336f3d16 user: mwm tags: trunk
2016-11-01
08:55
Better placement of messages. check-in: b42cf2575d user: mwm tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to Tiny-1010.ino.
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
                    else
                         selected = WAIT_LEN - 1;
               } while (game.waiting[selected] < 0);
          else if (arduboy.pressed(DOWN_BUTTON))
               do
                    selected = (selected + 1) % WAIT_LEN;
               while (game.waiting[selected] < 0);
          else if (arduboy.pressed(LEFT_BUTTON)) {
               game.x = game.y = 0;
               state = MOVING;
          } else if (arduboy.pressed(RIGHT_BUTTON)) {
               arduboy.digitalWriteRGB(RGB_ON, RGB_OFF, RGB_OFF);
               if (find_clear(s))
                    state = MOVING;
          }







|







422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
                    else
                         selected = WAIT_LEN - 1;
               } while (game.waiting[selected] < 0);
          else if (arduboy.pressed(DOWN_BUTTON))
               do
                    selected = (selected + 1) % WAIT_LEN;
               while (game.waiting[selected] < 0);
          else if (arduboy.pressed(A_BUTTON)) {
               game.x = game.y = 0;
               state = MOVING;
          } else if (arduboy.pressed(RIGHT_BUTTON)) {
               arduboy.digitalWriteRGB(RGB_ON, RGB_OFF, RGB_OFF);
               if (find_clear(s))
                    state = MOVING;
          }