From c057f5f8f63132f3f0e15482fee3220cab6eb09c Mon Sep 17 00:00:00 2001 From: Ninjdai Date: Sat, 11 Nov 2023 00:45:23 +0100 Subject: [PATCH] Changed default options (text speed defaults to fast; battle type defaults to set) --- README.md | 8 +++++--- src/new_game.c | 4 ++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a6f7ffd8c..eca4de467 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,11 @@ If you have suggestions, found bugs, or just want to talk, feel free to DM me on - Battle mechanics such as megas, S/P split, fairy type... - New Exp Share - For more info, check out [their github](https://github.com/rh-hideout/pokeemerald-expansion) - * SIDEWAYS STAIRS :OOOOOO [by ghoulslash](https://www.pokecommunity.com/showthread.php?p=10175618) - * Bigger bag (Up to 999 of each item) - * X/Y-style wrapping summary screen ([Zeturic](https://www.pokecommunity.com/showpost.php?p=10060875&postcount=27)) + * SIDEWAYS STAIRS :OOOOOO [by ghoulslash](https://www.pokecommunity.com/showthread.php?p=10175618) (Best feature of the hack frfr) + * QOL + - Bigger bag (Up to 999 of each item) + - X/Y-style wrapping summary screen ([Zeturic](https://www.pokecommunity.com/showpost.php?p=10060875&postcount=27)) + - Options default to fast text speed and set battle type ## WIP * Brand new region of ??????? diff --git a/src/new_game.c b/src/new_game.c index 5358f864d..f37fb1cd8 100644 --- a/src/new_game.c +++ b/src/new_game.c @@ -90,10 +90,10 @@ static void InitPlayerTrainerId(void) // L=A isnt set here for some reason. static void SetDefaultOptions(void) { - gSaveBlock2Ptr->optionsTextSpeed = OPTIONS_TEXT_SPEED_MID; + gSaveBlock2Ptr->optionsTextSpeed = OPTIONS_TEXT_SPEED_FAST; gSaveBlock2Ptr->optionsWindowFrameType = 0; gSaveBlock2Ptr->optionsSound = OPTIONS_SOUND_MONO; - gSaveBlock2Ptr->optionsBattleStyle = OPTIONS_BATTLE_STYLE_SHIFT; + gSaveBlock2Ptr->optionsBattleStyle = OPTIONS_BATTLE_STYLE_SET; gSaveBlock2Ptr->optionsBattleSceneOff = FALSE; gSaveBlock2Ptr->regionMapZoom = FALSE; }