[Scummvm-cvs-logs] CVS: scummvm/common scummsys.h,1.33,1.34 stdafx.h,1.10,1.11

Pawel Kolodziejski aquadran at users.sourceforge.net
Thu Jul 31 11:36:03 CEST 2003


Update of /cvsroot/scummvm/scummvm/common
In directory sc8-pr-cvs1:/tmp/cvs-serv12119/common

Modified Files:
	scummsys.h stdafx.h 
Log Message:
back disable warnings into stdafx.h, vc6 is lack of warnings support

Index: scummsys.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/scummsys.h,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- scummsys.h	24 Jul 2003 16:18:41 -0000	1.33
+++ scummsys.h	31 Jul 2003 18:35:00 -0000	1.34
@@ -36,9 +36,6 @@
 
 #if defined(_MSC_VER)
 
-	//#pragma warning (disable: 4244)
-	//#pragma warning (disable: 4101)
-
 	#define scumm_stricmp stricmp
 	#define scumm_strnicmp strnicmp
 	#define snprintf _snprintf

Index: stdafx.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/stdafx.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- stdafx.h	30 Jul 2003 22:55:18 -0000	1.10
+++ stdafx.h	31 Jul 2003 18:35:00 -0000	1.11
@@ -35,6 +35,10 @@
 
 #elif defined(WIN32)
 
+#pragma once
+#pragma warning( disable : 4068 ) // turn off "unknown pragma" warning
+#pragma warning( disable : 4244 ) // turn off "conversion type" warning
+#pragma warning( disable : 4390 ) // turn oof "empty statement" warning for BS2 code
 
 #if !defined(_WIN32_WCE)
 





More information about the Scummvm-git-logs mailing list