diff --git a/README.md b/README.md index 21ff68be..95651022 100644 --- a/README.md +++ b/README.md @@ -68,10 +68,9 @@ A known set of PNG files using 2 letter ID's can be downloaded [here](https://me Emulators should be added to the `/menu/emulators` directory on the SD card. Menu currently supports the following emulators and associated ROM file names: - - **NES**: [neon64v2](https://github.com/hcs64/neon64v2) by *hcs64* - `neon64bu.rom` - - **SNES**: [sodium64](https://github.com/Hydr8gon/sodium64) by *Hydr8gon* - `sodium64.z64` - - **Game Boy** / **GB Color**: [gb64](https://lambertjamesd.github.io/gb64/romwrapper/romwrapper.html) by *lambertjamesd* - `gb.v64` / `gbc.v64` - - **Sega Master System** / **Sega Game Gear** / **Sg1000**: [TotalSMS](https://github.com/ITotalJustice/TotalSMS) - `TotalSMS.z64` (Currently broken) + - **NES**: [neon64v2](https://github.com/hcs64/neon64v2/releases) by *hcs64* - `neon64bu.rom` + - **SNES**: [sodium64](https://github.com/Hydr8gon/sodium64/releases) by *Hydr8gon* - `sodium64.z64` + - **Game Boy** / **GB Color**: [gb64](https://lambertjamesd.github.io/gb64/romwrapper/romwrapper.html) by *lambertjamesd* - `gb.v64` / `gbc.v64` ("Download Emulator" button) ### Menu Settings The Menu creates a `config.ini` file in `sd:/menu/` which contains various settings that are used by the menu. diff --git a/src/menu/menu.c b/src/menu/menu.c index b1e05380..2ec04545 100644 --- a/src/menu/menu.c +++ b/src/menu/menu.c @@ -67,6 +67,10 @@ static void menu_init (boot_params_t *boot_params) { sound_init_default(); + JOYPAD_PORT_FOREACH (port) { + joypad_set_rumble_active(port, false); + } + menu = calloc(1, sizeof(menu_t)); assert(menu != NULL);