dev9null|fwnull|usbnull:windows: Remove snprintf define

Not necessary anymore with recent VS versions.
This commit is contained in:
Jonathan Li 2018-05-20 12:52:48 +01:00
parent 7cdec614c7
commit ac7cbdf6c3
3 changed files with 0 additions and 9 deletions

View File

@ -27,9 +27,6 @@ const u8 version = PS2E_FW_VERSION;
const u8 revision = 0; const u8 revision = 0;
const u8 build = 7; // increase that with each version const u8 build = 7; // increase that with each version
#ifdef _MSC_VER
#define snprintf sprintf_s
#endif
static char libraryName[256]; static char libraryName[256];
string s_strIniPath = "inis"; string s_strIniPath = "inis";

View File

@ -25,9 +25,6 @@ const unsigned char version = PS2E_USB_VERSION;
const unsigned char revision = 0; const unsigned char revision = 0;
const unsigned char build = 7; // increase that with each version const unsigned char build = 7; // increase that with each version
#ifdef _MSC_VER
#define snprintf sprintf_s
#endif
static char libraryName[256]; static char libraryName[256];
USBcallback USBirq; USBcallback USBirq;

View File

@ -37,9 +37,6 @@ const unsigned char version = PS2E_DEV9_VERSION;
const unsigned char revision = 0; const unsigned char revision = 0;
const unsigned char build = 5; // increase that with each version const unsigned char build = 5; // increase that with each version
#ifdef _MSC_VER
#define snprintf sprintf_s
#endif
static char libraryName[256]; static char libraryName[256];
// Our IRQ call. // Our IRQ call.