1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-04 10:03:36 +00:00

Replace #ifdef WIN32 by #ifdef OS_WINDOWS in GLideNHQ

This commit is contained in:
Sergey Lipskiy 2017-11-04 19:00:50 +07:00
parent 4e36fa07a2
commit fb6d945953
3 changed files with 7 additions and 7 deletions

View File

@ -228,7 +228,7 @@ TxCache::save(const wchar_t *path, const wchar_t *filename, int config)
osal_mkdirp(path);
/* Ugly hack to enable fopen/gzopen in Win9x */
#ifdef WIN32
#ifdef OS_WINDOWS
wchar_t curpath[MAX_PATH];
GETCWD(MAX_PATH, curpath);
CHDIR(path);
@ -306,7 +306,7 @@ TxCache::load(const wchar_t *path, const wchar_t *filename, int config)
/* find it on disk */
char cbuf[MAX_PATH];
#ifdef WIN32
#ifdef OS_WINDOWS
wchar_t curpath[MAX_PATH];
GETCWD(MAX_PATH, curpath);
CHDIR(path);

View File

@ -608,7 +608,7 @@ TxFilter::dmptx(uint8 *src, int width, int height, int rowStridePixel, uint16 gf
tmpbuf.append(wbuf);
}
#ifdef WIN32
#ifdef OS_WINDOWS
if ((fp = _wfopen(tmpbuf.c_str(), wst("wb"))) != nullptr) {
#else
char cbuf[MAX_PATH];

View File

@ -178,7 +178,7 @@ TxHiResCache::loadHiResTextures(const wchar_t * dir_path, boolean replace)
*
* I opted to use chdir in order to use fopen() for windows 9x.
*/
#ifdef WIN32
#ifdef OS_WINDOWS
wchar_t curpath[MAX_PATH];
GETCWD(MAX_PATH, curpath);
CHDIR(dir_path);
@ -244,7 +244,7 @@ TxHiResCache::loadHiResTextures(const wchar_t * dir_path, boolean replace)
/* XXX case sensitivity fiasco!
* files must use _a, _rgb, _all, _allciByRGBA, _ciByRGBA, _ci
* and file extensions must be in lower case letters! */
#ifdef WIN32
#ifdef OS_WINDOWS
{
unsigned int i;
for (i = 0; i < strlen(fname); i++) fname[i] = tolower(fname[i]);
@ -259,7 +259,7 @@ TxHiResCache::loadHiResTextures(const wchar_t * dir_path, boolean replace)
/* XXX case sensitivity fiasco!
* files must use _a, _rgb, _all, _allciByRGBA, _ciByRGBA, _ci
* and file extensions must be in lower case letters! */
#ifdef WIN32
#ifdef OS_WINDOWS
{
unsigned int i;
for (i = 0; i < strlen(fname); i++) fname[i] = tolower(fname[i]);
@ -461,7 +461,7 @@ TxHiResCache::loadHiResTextures(const wchar_t * dir_path, boolean replace)
*/
if (pfname == strstr(fname, "_all.png") ||
pfname == strstr(fname, "_all.dds") ||
#ifdef WIN32
#ifdef OS_WINDOWS
pfname == strstr(fname, "_allcibyrgba.png") ||
pfname == strstr(fname, "_allcibyrgba.dds") ||
pfname == strstr(fname, "_cibyrgba.png") ||