mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-03 23:52:41 +00:00
Protecting VC++-specific pragmas with ifdef _MSC_VER to allow
a clean Cygwin build. svn-id: r3452
This commit is contained in:
parent
bdd798b163
commit
49c07dc041
@ -17,6 +17,10 @@
|
||||
*
|
||||
* Change Log:
|
||||
* $Log$
|
||||
* Revision 1.6 2001/11/03 06:33:29 cmatsuoka
|
||||
* Protecting VC++-specific pragmas with ifdef _MSC_VER to allow
|
||||
* a clean Cygwin build.
|
||||
*
|
||||
* Revision 1.5 2001/10/23 19:51:50 strigeus
|
||||
* recompile not needed when switching games
|
||||
* debugger skeleton implemented
|
||||
@ -39,8 +43,11 @@
|
||||
|
||||
#if defined(WIN32)
|
||||
|
||||
/* Pragmas are VC++-specific */
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning (disable: 4244)
|
||||
#pragma warning (disable: 4101)
|
||||
#endif
|
||||
|
||||
#define scumm_stricmp stricmp
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user