Skip to content

Commit

Permalink
Off by 1
Browse files Browse the repository at this point in the history
Fixes #144
  • Loading branch information
Admiral-Fish committed Mar 10, 2021
1 parent 04bb0d9 commit 84b820a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Forms/Models/Gen4/WildModel4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ QVariant WildGeneratorModel4::data(const QModelIndex &index, int role) const
case 13:
case 14:
case 15:
return state.getIV(static_cast<u8>(column - 9));
return state.getIV(static_cast<u8>(column - 10));
case 16:
return QString::fromStdString(Translator::getHiddenPower(state.getHidden()));
case 17:
Expand Down

0 comments on commit 84b820a

Please sign in to comment.