ソースを参照

Skip .sh and .sc

mikymod 11 年 前
コミット
a37816056f
1 ファイル変更4 行追加0 行削除
  1. 4 0
      engine/compilers/BundleCompiler.cpp

+ 4 - 0
engine/compilers/BundleCompiler.cpp

@@ -105,6 +105,10 @@ bool BundleCompiler::compile(const char* bundle_dir, const char* source_dir, con
 			continue;
 			continue;
 		if (files[i].ends_with(".dds"))
 		if (files[i].ends_with(".dds"))
 			continue;
 			continue;
+		if (files[i].ends_with(".sh"))
+			continue;
+		if (files[i].ends_with(".sc"))
+			continue;
 
 
 		const char* filename = files[i].c_str();
 		const char* filename = files[i].c_str();