X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fuiq3%2Femu.c;h=48fdc1d529628dc99fe8448ee310fa8b57b513c1;hb=16b0afd0294a8acde173e2973f9a35eafe0bd185;hp=71bf872e336900aaa42f3bcce2d125af85255261;hpb=ca482e5de8bacb70db55f43afe02f93fe6fe3f16;p=picodrive.git diff --git a/platform/uiq3/emu.c b/platform/uiq3/emu.c index 71bf872..48fdc1d 100644 --- a/platform/uiq3/emu.c +++ b/platform/uiq3/emu.c @@ -4,7 +4,7 @@ #include "../common/emu.h" #include "../common/config.h" #include "../common/menu.h" -#include "Pico/PicoInt.h" +#include "pico/pico_int.h" const char * const keyNames[] = { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, @@ -65,6 +65,7 @@ void emu_prepareDefaultConfig(void) defaultConfig.Frameskip = -1; // auto defaultConfig.volume = 80; defaultConfig.scaling = 0; + defaultConfig.KeyBinds[0xd5] = 1<<26; // back } /* used by config engine only, not actual menus */ @@ -102,7 +103,7 @@ const int opt2_entry_count = OPT2_ENTRY_COUNT; menu_entry cdopt_entries[] = { { "CD LEDs", MB_ONOFF, MA_CDOPT_LEDS, ¤tConfig.EmuOpt, 0x0400, 0, 0, 1, 1 }, - { "CDDA audio (using mp3s)", MB_ONOFF, MA_CDOPT_CDDA, &PicoOpt, 0x0800, 0, 0, 1, 1 }, + { "CDDA audio", MB_ONOFF, MA_CDOPT_CDDA, &PicoOpt, 0x0800, 0, 0, 1, 1 }, { "PCM audio", MB_ONOFF, MA_CDOPT_PCM, &PicoOpt, 0x0400, 0, 0, 1, 1 }, { NULL, MB_NONE, MA_CDOPT_READAHEAD, NULL, 0, 0, 0, 1, 1 }, { "SaveRAM cart", MB_ONOFF, MA_CDOPT_SAVERAM, &PicoOpt, 0x8000, 0, 0, 1, 1 },