cvg,fxremap.c: only include sst1init.h (for INIT_PRINTF) for dos builds

for others, make INIT_PRINTF() in fxremap.c a nop.
This commit is contained in:
sezero
2018-08-09 15:55:01 +03:00
parent b4c30b1693
commit b5a555a538
2 changed files with 8 additions and 0 deletions

View File

@@ -3,8 +3,12 @@
#include <string.h>
#include <3dfx.h>
#include <fxpci.h>
#if defined(__DOS32__)
/* for INIT_PRINTF: */
#include <sst1init.h>
#else
#define INIT_PRINTF(a) (void)0
#endif
#define FX_DLL_DEFINITION
#include <fxdll.h>

View File

@@ -3,8 +3,12 @@
#include <string.h>
#include <3dfx.h>
#include <fxpci.h>
#if defined(__DOS32__)
/* for INIT_PRINTF: */
#include <sst1init.h>
#else
#define INIT_PRINTF(a) (void)0
#endif
#define FX_DLL_DEFINITION
#include <fxdll.h>