Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Genrich <daniel.genrich@gmx.net>2014-03-09 12:55:49 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2014-03-09 12:55:49 +0400
commit40d4fb9fce92568f7cbbe634c759bd555266e47c (patch)
tree23b5b7d11763b2d5a3c8310e0d2d6060ccee284d /intern/audaspace
parentd219312d44d7153dfe74eeef1dd0f8cbbc1340f3 (diff)
Fix compile error using MSVC2008 + cmake
Diffstat (limited to 'intern/audaspace')
-rw-r--r--intern/audaspace/intern/AUD_ConverterFunctions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/audaspace/intern/AUD_ConverterFunctions.h b/intern/audaspace/intern/AUD_ConverterFunctions.h
index 99c03de42aa..7817ee88c07 100644
--- a/intern/audaspace/intern/AUD_ConverterFunctions.h
+++ b/intern/audaspace/intern/AUD_ConverterFunctions.h
@@ -34,7 +34,7 @@
#include <cstring>
#ifdef _MSC_VER
-#if (_MSC_VER < 1300)
+#if (_MSC_VER <= 1500)
typedef short int16_t;
typedef int int32_t;
#else