From f31af8fdc9f088c4a24ff5dec686fae885ff2240 Mon Sep 17 00:00:00 2001 From: Malkierian Date: Sat, 3 May 2025 19:10:09 -0700 Subject: [PATCH] Fix truncation warning in `entrance.h`. --- soh/soh/Enhancements/randomizer/entrance.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/randomizer/entrance.h b/soh/soh/Enhancements/randomizer/entrance.h index 026da7426..8fc192ca1 100644 --- a/soh/soh/Enhancements/randomizer/entrance.h +++ b/soh/soh/Enhancements/randomizer/entrance.h @@ -90,7 +90,7 @@ class Entrance { Entrance* reverse = nullptr; Entrance* assumed = nullptr; Entrance* replacement = nullptr; - int16_t index = 0xFFFF; + int16_t index = -1; bool shuffled = false; bool primary = false; bool addedToPool = false;