Daniele Bartolini 10 лет назад
Родитель
Сommit
1649aa140a
2 измененных файлов с 6 добавлено и 6 удалено
  1. 3 3
      src/resource/shader_resource.cpp
  2. 3 3
      src/resource/texture_resource.cpp

+ 3 - 3
src/resource/shader_resource.cpp

@@ -16,10 +16,10 @@
 #include "string_stream.h"
 #include "temp_allocator.h"
 
-#if CROWN_DEBUG
-	#define SHADERC_NAME "shaderc-debug-"
-#elif CROWN_DEVELOPMENT
+#if CROWN_DEVELOPMENT
 	#define SHADERC_NAME "shaderc-development-"
+#elif CROWN_DEBUG
+	#define SHADERC_NAME "shaderc-debug-"
 #else
 	#define SHADERC_NAME "shaderc-release-"
 #endif  // CROWN_DEBUG

+ 3 - 3
src/resource/texture_resource.cpp

@@ -11,10 +11,10 @@
 #include "texture_resource.h"
 #include "os.h"
 
-#if CROWN_DEBUG
-	#define TEXTUREC_NAME "texturec-debug-"
-#elif CROWN_DEVELOPMENT
+#if CROWN_DEVELOPMENT
 	#define TEXTUREC_NAME "texturec-development-"
+#elif CROWN_DEBUG
+	#define TEXTUREC_NAME "texturec-debug-"
 #else
 	#define TEXTUREC_NAME "texturec-release-"
 #endif  // CROWN_DEBUG