From 091b6a298725cb72ce1a8a7135bdbde4682773fd Mon Sep 17 00:00:00 2001 From: Garrett Cox Date: Sat, 26 Nov 2022 12:39:45 -0600 Subject: [PATCH] [Fix] Issue with first two rainbow bridge settings getting swapped (#2023) Fixes #2022 --- soh/soh/Enhancements/randomizer/randomizerTypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soh/soh/Enhancements/randomizer/randomizerTypes.h b/soh/soh/Enhancements/randomizer/randomizerTypes.h index cfc9ce473..9a50db4de 100644 --- a/soh/soh/Enhancements/randomizer/randomizerTypes.h +++ b/soh/soh/Enhancements/randomizer/randomizerTypes.h @@ -1106,8 +1106,8 @@ typedef enum RandoOption { RO_GF_OPEN, //Rainbow Bridge settings (always open, vanilla, stones, medallions, dungeon rewards, dungeons, tokens) - RO_BRIDGE_VANILLA = 0, - RO_BRIDGE_ALWAYS_OPEN, + RO_BRIDGE_ALWAYS_OPEN = 0, + RO_BRIDGE_VANILLA, RO_BRIDGE_STONES, RO_BRIDGE_MEDALLIONS, RO_BRIDGE_DUNGEON_REWARDS,