Evade the SDL dependency for WIN32/WIN64 builds.
This commit is contained in:
parent
6d5ee9d562
commit
d27e6b119c
|
@ -37,8 +37,11 @@
|
||||||
//
|
//
|
||||||
//****************************************************************
|
//****************************************************************
|
||||||
|
|
||||||
|
#ifndef _WIN32
|
||||||
#include <SDL.h>
|
#include <SDL.h>
|
||||||
|
#endif
|
||||||
#include "Gfx_1.3.h"
|
#include "Gfx_1.3.h"
|
||||||
|
|
||||||
#include "TexCache.h"
|
#include "TexCache.h"
|
||||||
#include "Combine.h"
|
#include "Combine.h"
|
||||||
#include "Util.h"
|
#include "Util.h"
|
||||||
|
@ -542,7 +545,11 @@ void TexCache ()
|
||||||
} else {
|
} else {
|
||||||
DisplayLoadProgress(L"Texture dump - OFF\n");
|
DisplayLoadProgress(L"Texture dump - OFF\n");
|
||||||
}
|
}
|
||||||
|
#if defined(_WIN32)
|
||||||
|
Sleep(1000);
|
||||||
|
#else
|
||||||
SDL_Delay(1000);
|
SDL_Delay(1000);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue