Skip to content

Commit

Permalink
ps3: □ button -> activate screensaver until we have a better use for it
Browse files Browse the repository at this point in the history
  • Loading branch information
andoma committed Mar 16, 2011
1 parent bf9eff5 commit e431a6d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ui/glw/glw_ps3.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ typedef struct krepeat {


static krepeat_t k_left, k_right, k_up, k_down;
static krepeat_t k_enter, k_back, k_menu;
static krepeat_t k_enter, k_back, k_menu, k_sqr;
static krepeat_t k_pp, k_home, k_l3, k_r3;

static void
Expand Down Expand Up @@ -397,6 +397,7 @@ handle_pads(glw_ps3_t *gp)
btn(gp, &k_enter, paddata.BTN_CROSS, ACTION_ACTIVATE);
btn(gp, &k_back, paddata.BTN_CIRCLE, ACTION_NAV_BACK);
btn(gp, &k_menu, paddata.BTN_TRIANGLE, ACTION_MENU);
btn(gp, &k_sqr, paddata.BTN_SQUARE, ACTION_ENABLE_SCREENSAVER);
btn(gp, &k_pp, paddata.BTN_START, ACTION_PLAYPAUSE);
btn(gp, &k_home, paddata.BTN_SELECT, ACTION_HOME);
btn(gp, &k_r3, paddata.BTN_R3, ACTION_LOGWINDOW);
Expand Down

0 comments on commit e431a6d

Please sign in to comment.