mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
msvc: enable /Zc:preprocessor and make build compile cleanly
This commit is contained in:
@ -12,6 +12,13 @@
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
#define CHECK(cond, Message, ...) \
|
||||
if (!(cond)) \
|
||||
{ \
|
||||
PanicAlert("%s failed in %s at line %d: " Message, __func__, __FILE__, __LINE__, \
|
||||
##__VA_ARGS__); \
|
||||
}
|
||||
|
||||
struct IDXGIFactory;
|
||||
|
||||
enum class AbstractTextureFormat : u32;
|
||||
|
Reference in New Issue
Block a user