From f78ba20641c7fd7bd2656f9483277959d33a1354 Mon Sep 17 00:00:00 2001 From: TheShadowEevee Date: Sun, 15 May 2022 00:13:45 -0500 Subject: [PATCH] Change default selection, update README --- README.md | 8 ++++---- source/main.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3ae62df..a08a7f3 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ The setting changes are non-temporary, i.e. they persist after system reboot. You should have the Homebrew Channel installed so you can revert any changes pre or post reboot if needed. ## Compiling -You need to install [devKitPro](https://devkitpro.org/wiki/Getting_Started) with the `wii-dev` group installed, as well as [RuntimeIOSPatch](https://gbatemp.net/threads/wii-vwii-libruntimeiospatch.339606/?msclkid=9449fb2ac11111eca5087aab4842d005) properly setup. +You need to install [devKitPro](https://devkitpro.org/wiki/Getting_Started) with the `wii-dev` group installed, as well as [RuntimeIOSPatch](https://gbatemp.net/threads/wii-vwii-libruntimeiospatch.339606) ([Source](https://gitlab.com/Nanolx/homebrewfilter/-/tree/master/libruntimeiospatch)) properly setup. If you are using Windows, it is recommended to use [WSL2](https://docs.microsoft.com/en-us/windows/wsl/about) if avalible. Once all required tools are installed, run `make` in the same folder as `Makefile`. @@ -15,11 +15,11 @@ This software comes with NO WARRANTY WHATSOEVER. You may use this software at yo Neither ModMii nor any source code contributors can take responsibility for any damage caused by this application. ## Warnings - - If setting.txt is corrupted for any reason, it is entirely possible that your Wii will no longer boot. - - If you change the GAME ("Game Region") setting, you may no longer be able to boot discs! + - If `setting.txt` is corrupted for any reason, it is entirely possible that your Wii will no longer boot. + - If you change the `GAME` ("Game Region") setting, you may no longer be able to boot discs! - Be careful not to change Video mode to a mode unsupported by your display. - If you change your Country code, you will be unable to receive any pending gifts you have in the Wii Shop Channel. (The shop will also warn you of this) - - Setting the AREA setting ("Console Area Setting") to a different region than your System Menu WILL cause a Semi-Brick! If for some reason your System-Configured flag is unset (via some installation, or a corrupted SYSCONF) your system WILL become FULLY BRICKED. + - Setting the `AREA` setting ("Console Area Setting") to a different region than your System Menu WILL cause a Semi-Brick! If for some reason your System-Configured flag is unset (via some installation, or a corrupted SYSCONF) your system WILL become FULLY BRICKED. ## License ARCME is licensed under the GPLv2 in line with ARC and Patchmii's licensing. \ No newline at end of file diff --git a/source/main.c b/source/main.c index bd36b2b..fe2ccb8 100644 --- a/source/main.c +++ b/source/main.c @@ -47,7 +47,7 @@ distribution. #define WARNING_SIGN "\x1b[30;1m\x1b[43;1m/!\\\x1b[37;1m\x1b[40m" #define maxdata 256 -u32 selected = 0; +u32 selected = 8; char page_contents[ITEMS][64]; int lang, area, game, video, region, country, countrystr, eula;