removed all defines which are defined in the CMakeLists.txt

This commit is contained in:
d1str4ught
2025-08-27 12:48:33 +02:00
parent f6ac84f91f
commit 67cabc3c89
13 changed files with 1 additions and 43 deletions

View File

@@ -51,11 +51,6 @@ struct Color565
/////////////////////////////////////
// should be in ddraw.h
#ifndef MAKEFOURCC
#define MAKEFOURCC(ch0, ch1, ch2, ch3) \
((DWORD)(BYTE) (ch0 ) | ((DWORD)(BYTE) (ch1) << 8) | \
((DWORD)(BYTE) (ch2) << 16) | ((DWORD)(BYTE) (ch3) << 24))
#endif // defined(MAKEFOURCC)
CDXTCImage::CDXTCImage()
{

View File

@@ -12,8 +12,6 @@
#pragma warning(disable:4786)
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
//#include <crtdbg.h>
#include <windows.h>