From 71dbf6632ed553d05035f0d32abbb313926e6c80 Mon Sep 17 00:00:00 2001 From: Xiao Qi Date: Sat, 7 Jan 2023 21:56:05 +0800 Subject: [PATCH] Fixed preprocessor #if statements --- src/main.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 16706b0..be15747 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -49,17 +49,15 @@ int main(int argc, char* argv[]) paths.emplace_back(argv[i]); } } - #else - for (auto const& path : paths) { SH_COMP::MeshCompiler::LoadAndCompile(path); } - #endif - - + + #else SH_COMP::MeshCompiler::LoadAndCompile("MD_Homeowner-NoRig.gltf"); + #endif return 0; }