diff options
author | Paweł Kołodziejski | 2003-07-30 21:54:50 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2003-07-30 21:54:50 +0000 |
commit | 66635b5e97e6e93cb805154681aa1ac56041bf03 (patch) | |
tree | e478d4fbe828ff0e49ed087040c8843b3fb2cdd2 /common | |
parent | 12f9de02b49160714080580037bd6d24456b6565 (diff) | |
download | scummvm-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')
-rw-r--r-- | common/stdafx.h | 1 |
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 |