Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Niko committed Mar 25, 2023
1 parent 72590eb commit 1b6006c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -698,9 +698,8 @@ int LOAD_TenStages(struct GameTracker* gGT, int loadingStage, struct BigHeader*
// '2' for dram
LOAD_AppendQueue(bigfile, 2, iVar9 + ((u_int)(u_char)gGT->podium_modelIndex_tawna - 0x8f) * 2 + 0x1ad, &data.podiumModel_tawna, 0xfffffffe);

// -0x7d = 0x83
// 0x83 - 0x7e = 5 (dingo)
if (gGT->podium_modelIndex_First == -0x7d)
// if 0x7e+5 (dingo)
if (gGT->podium_modelIndex_First == 0x83)
{
// add "DingoFire" to loading queue
// '2' for dram
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -693,9 +693,8 @@ int LOAD_TenStages(struct GameTracker* gGT, int loadingStage, struct BigHeader*
// '2' for dram
LOAD_AppendQueue(bigfile, 2, iVar9 + ((u_int)(u_char)gGT->podium_modelIndex_tawna - 0x8f) * 2 + 0x1ad, &data.podiumModel_tawna, 0xfffffffe);

// -0x7d = 0x83
// 0x83 - 0x7e = 5 (dingo)
if (gGT->podium_modelIndex_First == -0x7d)
// if 0x7e+5 (dingo)
if (gGT->podium_modelIndex_First == 0x83)
{
// add "DingoFire" to loading queue
// '2' for dram
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -715,9 +715,8 @@ int LOAD_TenStages(struct GameTracker* gGT, int loadingStage, struct BigHeader*
// '2' for dram
LOAD_AppendQueue(bigfile, 2, iVar9 + ((u_int)(u_char)gGT->podium_modelIndex_tawna - 0x8f) * 2 + 0x1ad, &data.podiumModel_tawna, 0xfffffffe);

// -0x7d = 0x83
// 0x83 - 0x7e = 5 (dingo)
if (gGT->podium_modelIndex_First == -0x7d)
// if 0x7e+5 (dingo)
if (gGT->podium_modelIndex_First == 0x83)
{
// add "DingoFire" to loading queue
// '2' for dram
Expand Down

0 comments on commit 1b6006c

Please sign in to comment.