aboutsummaryrefslogtreecommitdiff
path: root/common/stdafx.h
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-07-30 21:54:50 +0000
committerPaweł Kołodziejski2003-07-30 21:54:50 +0000
commit66635b5e97e6e93cb805154681aa1ac56041bf03 (patch)
treee478d4fbe828ff0e49ed087040c8843b3fb2cdd2 /common/stdafx.h
parent12f9de02b49160714080580037bd6d24456b6565 (diff)
downloadscummvm-rg350-66635b5e97e6e93cb805154681aa1ac56041bf03.tar.gz
scummvm-rg350-66635b5e97e6e93cb805154681aa1ac56041bf03.tar.bz2
scummvm-rg350-66635b5e97e6e93cb805154681aa1ac56041bf03.zip
disable conversion type warnings for vc
svn-id: r9309
Diffstat (limited to 'common/stdafx.h')
-rw-r--r--common/stdafx.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/stdafx.h b/common/stdafx.h
index 36ade2f62f..0ee78c127a 100644
--- a/common/stdafx.h
+++ b/common/stdafx.h
@@ -37,6 +37,7 @@
#ifdef _MSC_VER
# pragma warning( disable : 4068 ) // turn off "unknown pragma" warning
+# pragma warning( disable : 4244 ) // turn off "conversion from 'type1' to 'type2', possible loss of data" warning
#endif
#if _MSC_VER > 1000