From 8c7b0d1486c517598399aba8b95ea0271db692ac Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 28 Jan 2017 18:19:01 +0100 Subject: [PATCH] wiimote surface support changes actions recently moved to Common/* --- libs/surfaces/wiimote/wiimote.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/surfaces/wiimote/wiimote.cc b/libs/surfaces/wiimote/wiimote.cc index df16bc05a5..56078545be 100644 --- a/libs/surfaces/wiimote/wiimote.cc +++ b/libs/surfaces/wiimote/wiimote.cc @@ -376,7 +376,7 @@ WiimoteControlProtocol::wiimote_callback (int mesg_count, union cwiid_mesg mesg[ // B + Home = add marker at playhead if (b & CWIID_BTN_HOME) { - access_action ("Editor/add-location-from-playhead"); + access_action ("Common/add-location-from-playhead"); } // B + minus = move playhead to the start @@ -406,12 +406,12 @@ WiimoteControlProtocol::wiimote_callback (int mesg_count, union cwiid_mesg mesg[ // left = move playhead back a bit if (b & CWIID_BTN_LEFT) { - access_action ("Editor/nudge-playhead-backward"); + access_action ("Common/nudge-playhead-backward"); } // right = move playhead forward a bit if (b & CWIID_BTN_RIGHT) { - access_action ("Editor/nudge-playhead-forward"); + access_action ("Common/nudge-playhead-forward"); } // up = select previous track