diff --git a/code/MDL/HalfLife/HL1MDLLoader.cpp b/code/MDL/HalfLife/HL1MDLLoader.cpp index 785183950..90a1479a3 100644 --- a/code/MDL/HalfLife/HL1MDLLoader.cpp +++ b/code/MDL/HalfLife/HL1MDLLoader.cpp @@ -175,9 +175,9 @@ void HL1MDLLoader::load_file() { release_resources(); - } catch (const std::exception &e) { + } catch (...) { release_resources(); - throw e; + throw; } } diff --git a/test/models/MS3D/Wuson.ms3d b/test/models/MS3D/Wuson.ms3d index e78cbaa58..2fc79ac82 100644 Binary files a/test/models/MS3D/Wuson.ms3d and b/test/models/MS3D/Wuson.ms3d differ diff --git a/test/models/glTF2/BoxTextured-glTF-Binary/BoxTextured.glb b/test/models/glTF2/BoxTextured-glTF-Binary/BoxTextured.glb index 19b5546b0..03cd2acf9 100644 Binary files a/test/models/glTF2/BoxTextured-glTF-Binary/BoxTextured.glb and b/test/models/glTF2/BoxTextured-glTF-Binary/BoxTextured.glb differ