Skip to content

Commit

Permalink
Fix favorite combo offset on quest save
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyV99 committed Apr 29, 2023
1 parent ef294ba commit 60761a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zq/zq_class.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13913,7 +13913,7 @@ int32_t writefavorites(PACKFILE *f, zquestheader*)
for(int q = MAXFAVORITECOMBOS-1; q >= 0; --q)
if(favorite_combos[q] != -1)
{
favcmb_cnt = q;
favcmb_cnt = q+1;
break;
}

Expand Down

0 comments on commit 60761a1

Please sign in to comment.