diff options
author | Filippos Karapetis | 2008-11-23 15:26:51 +0000 |
---|---|---|
committer | Filippos Karapetis | 2008-11-23 15:26:51 +0000 |
commit | 71dcfd13a28576bf677c8b6aef907922b459e4ef (patch) | |
tree | 001a406e8f981bc4cd8299bc154f54c76ac58cda | |
parent | 78eeb313fe68eacad37383acdf51f813f08aa1ee (diff) | |
download | scummvm-rg350-71dcfd13a28576bf677c8b6aef907922b459e4ef.tar.gz scummvm-rg350-71dcfd13a28576bf677c8b6aef907922b459e4ef.tar.bz2 scummvm-rg350-71dcfd13a28576bf677c8b6aef907922b459e4ef.zip |
Re-enabled MSVC warning 4125 - "decimal digits terminates octal escape sequence". This was thrown for a string with incorrect extended characters in the SAGA engine, which has been corrected now, so the warning itself is valid and quite informative.
svn-id: r35159
-rw-r--r-- | common/scummsys.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/scummsys.h b/common/scummsys.h index 725f4fdf0b..b4333125f0 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -46,7 +46,6 @@ #pragma once #pragma warning( disable : 4068 ) // turn off "unknown pragma" warning #pragma warning( disable : 4103 ) // turn off "alignement changed after including header" warning. We use pack-start.h file - #pragma warning( disable : 4125 ) // turn off "decimal digit terminates octal escape sequence" warning #pragma warning( disable : 4244 ) // turn off "conversion type" warning #pragma warning( disable : 4250 ) // turn off "inherits via dominance" warning #pragma warning( disable : 4351 ) // turn off "new behavior ... will be default initialized" warning |