Skip to content

Commit

Permalink
Add missing case
Browse files Browse the repository at this point in the history
  • Loading branch information
sk-zk committed Oct 3, 2024
1 parent a06995e commit 610c5fb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions TruckLib/Models/Ppd/NavCurve.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ public void Deserialize(BinaryReader r, uint? version = null)
case 0x17:
Deserialize16to18(r);
break;
case 0x18:
Deserialize16to18(r);
break;
default:
throw new NotSupportedException($"Version {version} is not supported.");
}
Expand Down

0 comments on commit 610c5fb

Please sign in to comment.