Fix order of gQuestItems (#224)

This commit is contained in:
louist103
2024-05-22 09:05:01 -05:00
committed by Garrett Cox
parent 691c97f893
commit 17b698667f
2 changed files with 2 additions and 2 deletions
@@ -13,8 +13,8 @@
<Texture Name="gQuestIconDungeonMapTex" OutName="dungeon_map_icon" Format="rgba32" Width="24" Height="24" Offset="0x4800" />
<!-- Identical to gQuestIconGoldSkulltulaTex -->
<Texture Name="gQuestIconGoldSkulltula2Tex" OutName="gold_skulltula_2_icon" Format="rgba32" Width="24" Height="24" Offset="0x5100" />
<Texture Name="gQuestIconSmallMagicJarTex" OutName="small_magic_jar_icon" Format="rgba32" Width="24" Height="24" Offset="0x6300" />
<Texture Name="gQuestIconSmallKeyTex" OutName="small_key_icon" Format="rgba32" Width="24" Height="24" Offset="0x5A00" />
<Texture Name="gQuestIconSmallMagicJarTex" OutName="small_magic_jar_icon" Format="rgba32" Width="24" Height="24" Offset="0x6300" />
<Texture Name="gQuestIconBigMagicJarTex" OutName="big_magic_jar_icon" Format="rgba32" Width="24" Height="24" Offset="0x6C00" />
<Texture Name="gQuestIconLinkHumanFaceTex" OutName="link_human_face_icon" Format="rgba16" Width="16" Height="16" Offset="0x7500"/>
</File>
+1 -1
View File
@@ -55,8 +55,8 @@ const char* gQuestIcons[] = {
gQuestIconCompassTex,
gQuestIconDungeonMapTex,
gQuestIconGoldSkulltula2Tex,
gQuestIconSmallMagicJarTex,
gQuestIconSmallKeyTex,
gQuestIconSmallMagicJarTex,
gQuestIconBigMagicJarTex,
gQuestIconLinkHumanFaceTex,
};