From d9b0cf1a6d048479a41bd2a53ea7de939c6ea1af Mon Sep 17 00:00:00 2001 From: Derpius <49565664+Derpius@users.noreply.github.com> Date: Sun, 13 Oct 2024 17:46:20 +0100 Subject: [PATCH] Update readme links and fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf623b5..614a6a0 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Simple and modern library for parsing the Valve model format. Documentation: https://taservers.github.io/MDLParser/ -See also: https://github.com/Derpius/BSPParser and https://github.com/Derpius/VTFParser. +See also: https://github.com/TAServers/BSPParser and https://github.com/TAServers/VTFParser. ## What's included @@ -30,7 +30,7 @@ const auto vtxData = ...; const auto vvdData = ...; // Parse the data (you should wrap this in a try/catch) -const MdlParser::Mdl mdl(mdlFileData); +const MdlParser::Mdl mdl(mdlData); const MdlParser::Vtx vtx(vtxData, mdl.getChecksum()); const MdlParser::Vvd vvd(vvdData, mdl.getChecksum());