Skip to content

Commit

Permalink
Fixed GeoLayout LOD Extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
KiritoDv committed Jun 9, 2024
1 parent 0153dd0 commit 966e5b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/factories/sm64/GeoLayoutFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,8 @@ std::optional<std::shared_ptr<IParsedData>> SM64::GeoLayoutFactory::parse(std::v
break;
}
case GeoOpcode::NodeLevelOfDetail: {
auto min = cur_geo_cmd_s16(0x02);
auto max = cur_geo_cmd_s16(0x04);
auto min = cur_geo_cmd_s16(0x04);
auto max = cur_geo_cmd_s16(0x06);

arguments.emplace_back(min);
arguments.emplace_back(max);
Expand Down

0 comments on commit 966e5b3

Please sign in to comment.