mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- disable MSVC warnings in OPNMidi.
This commit is contained in:
parent
77a2101c06
commit
73f9300c2b
1 changed files with 9 additions and 1 deletions
|
@ -52,7 +52,7 @@ typedef __int32 ssize_t;
|
|||
#include <vector>
|
||||
#include <list>
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
//#include <sstream>
|
||||
#include <map>
|
||||
#include <set>
|
||||
#include <cstdlib>
|
||||
|
@ -74,6 +74,13 @@ typedef __int32 ssize_t;
|
|||
#include <deque>
|
||||
#include <algorithm>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable:4244)
|
||||
#pragma warning(disable:4267)
|
||||
#pragma warning(disable:4146)
|
||||
#endif
|
||||
|
||||
|
||||
#include "fraction.hpp"
|
||||
#ifdef USE_LEGACY_EMULATOR
|
||||
#include "Ym2612_ChipEmu.h"
|
||||
|
@ -84,6 +91,7 @@ typedef __int32 ssize_t;
|
|||
#include "opnbank.h"
|
||||
#include "opnmidi.h"
|
||||
|
||||
|
||||
#define ADL_UNUSED(x) (void)x
|
||||
|
||||
extern std::string OPN2MIDI_ErrorString;
|
||||
|
|
Loading…
Reference in a new issue