diff --git a/soh/soh/Enhancements/cosmetics/authenticGfxPatches.cpp b/soh/soh/Enhancements/cosmetics/authenticGfxPatches.cpp index b2b473166..562b1592a 100644 --- a/soh/soh/Enhancements/cosmetics/authenticGfxPatches.cpp +++ b/soh/soh/Enhancements/cosmetics/authenticGfxPatches.cpp @@ -283,8 +283,8 @@ void PatchIronKnuckleTextureOverflow() { void PatchBoulderFragment() { // The boulder fragment renders invisible due to the change made by https://github.com/Kenix3/libultraship/pull/721 - // Until it is known wether this change is approriate or something else should be done to it, the following patches - // adjust the render mode for the DL to not become invisible + // Until it is known whether this change is appropriate or something else should be done to it, the following + // patches adjust the render mode for the DL to not become invisible ResourceMgr_PatchGfxByName(gBoulderFragmentsDL, "boulderFragmentRenderFix3", 3, gsDPSetRenderMode(G_RM_FOG_SHADE_A, G_RM_AA_ZB_OPA_SURF2)); ResourceMgr_PatchGfxByName(gBoulderFragmentsDL, "boulderFragmentRenderFix6", 6, diff --git a/soh/soh/Enhancements/randomizer/draw.cpp b/soh/soh/Enhancements/randomizer/draw.cpp index 374b026b2..f63441f3f 100644 --- a/soh/soh/Enhancements/randomizer/draw.cpp +++ b/soh/soh/Enhancements/randomizer/draw.cpp @@ -418,7 +418,7 @@ extern "C" void Randomizer_DrawTriforcePiece(PlayState* play, GetItemEntry getIt CLOSE_DISPS(play->state.gfxCtx); } -// Seperate draw function for drawing the Triforce piece when in the GI state. +// Separate draw function for drawing the Triforce piece when in the GI state. // Needed for delaying showing the triforce piece slightly so the triforce shard doesn't // suddenly snap to the new piece model or completed triforce because the piece is // given mid textbox. Also makes it so the overworld models don't turn into the completed diff --git a/soh/soh/Enhancements/randomizer/randomizer.cpp b/soh/soh/Enhancements/randomizer/randomizer.cpp index 430ff6f43..aa3a05dff 100644 --- a/soh/soh/Enhancements/randomizer/randomizer.cpp +++ b/soh/soh/Enhancements/randomizer/randomizer.cpp @@ -422,7 +422,7 @@ ItemObtainability Randomizer::GetItemObtainabilityFromRandomizerGet(RandomizerGe return OTRGlobals::Instance->gRandoContext->GetOption(RSK_BOMBCHU_BAG).Is(RO_BOMBCHU_BAG_NONE) ? CAN_OBTAIN : (INV_CONTENT(ITEM_BOMBCHU) != ITEM_NONE ? CAN_OBTAIN : CANT_OBTAIN_NEED_UPGRADE); - case RG_PROGRESSIVE_BOMBCHU_BAG: // RANDOTODO Do we want bombchu refills to exist separatly from bombchu bags? + case RG_PROGRESSIVE_BOMBCHU_BAG: // RANDOTODO Do we want bombchu refills to exist separately from bombchu bags? // If so, this needs changing. switch (OTRGlobals::Instance->gRandoContext->GetOption(RSK_BOMBCHU_BAG).Get()) { case RO_BOMBCHU_BAG_NONE: diff --git a/soh/soh/Enhancements/randomizer/randomizerTypes.h b/soh/soh/Enhancements/randomizer/randomizerTypes.h index fe6c2cbab..92bba438b 100644 --- a/soh/soh/Enhancements/randomizer/randomizerTypes.h +++ b/soh/soh/Enhancements/randomizer/randomizerTypes.h @@ -44,7 +44,6 @@ typedef struct ShopItemIdentity { int32_t itemPrice; } ShopItemIdentity; -// RANDOTODO compare child long jumpslash range with adult short #define ENTRANCE_GROTTO_LOAD_START 0x0700 #define ENTRANCE_GROTTO_EXIT_START 0x0800 diff --git a/soh/soh/Enhancements/randomizer/settings.cpp b/soh/soh/Enhancements/randomizer/settings.cpp index 2b3b86622..49faf6930 100644 --- a/soh/soh/Enhancements/randomizer/settings.cpp +++ b/soh/soh/Enhancements/randomizer/settings.cpp @@ -3430,7 +3430,7 @@ void Settings::ParseJson(nlohmann::json spoilerFileJson) { nlohmann::json settingsJson = spoilerFileJson["settings"]; for (auto it = settingsJson.begin(); it != settingsJson.end(); ++it) { // todo load into cvars for UI - // RANDOTODO handle numeric value to options conversion better than brute froce + // RANDOTODO handle numeric value to options conversion better than brute force if (StaticData::optionNameToEnum.contains(it.key())) { const RandomizerSettingKey index = StaticData::optionNameToEnum[it.key()]; mContext->GetOption(index).Set(mOptions[index].GetValueFromText(it.value())); diff --git a/soh/soh/ResourceManagerHelpers.cpp b/soh/soh/ResourceManagerHelpers.cpp index c8bb5cfd1..4d4f91264 100644 --- a/soh/soh/ResourceManagerHelpers.cpp +++ b/soh/soh/ResourceManagerHelpers.cpp @@ -543,7 +543,7 @@ extern "C" SkeletonHeader* ResourceMgr_LoadSkeletonByName(const char* path, Skel } // This function is only called when a skeleton is initialized. - // Therefore we can take this oppurtunity to take note of the Skeleton that is created... + // Therefore we can take this opportunity to take note of the Skeleton that is created... if (skelAnime != nullptr) { auto stringPath = std::string(path); SOH::SkeletonPatcher::RegisterSkeleton(stringPath, skelAnime);