Changed MSVC6 compile error to (_MSC_VER < 1300), reported by lab_zj

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2288 dfc29bdd-3216-0410-991c-e03cc46cb475
master
bitplane 2009-03-16 02:55:23 +00:00
parent a788e7ca87
commit f34c718ae1
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
#endif
#endif
#if defined(_MSC_VER) && (_MSC_VER < 1400)
#if defined(_MSC_VER) && (_MSC_VER < 1300)
# error "Only Microsoft Visual Studio 7.0 and later are supported."
#endif