mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Merge large parts of nakeee's "Soap" branch into trunk, after fixing a few crash bugs in FileUtil.cpp.
Not really anything interesting, just some better comments, some slightly more portable/cleaner code in places. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2459 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -111,16 +111,16 @@ void HandleGLError();
|
||||
|
||||
|
||||
#ifdef _WIN32
|
||||
#define ERROR_LOG(...) {LOG(VIDEO, __VA_ARGS__)}
|
||||
#define INFO_LOG(...) {LOG(VIDEO, __VA_ARGS__)}
|
||||
//#define ERROR_LOG(...) {LOG(VIDEO, __VA_ARGS__)}
|
||||
//#define INFO_LOG(...) {LOG(VIDEO, __VA_ARGS__)}
|
||||
#define PRIM_LOG(...) {LOG(VIDEO, __VA_ARGS__)}
|
||||
#define DEBUG_LOG(...) {LOG(VIDEO, __VA_ARGS__)}
|
||||
//#define DEBUG_LOG(...) {LOG(VIDEO, __VA_ARGS__)}
|
||||
|
||||
#else
|
||||
#define ERROR_LOG(...) {LOG(VIDEO, ##__VA_ARGS__)}
|
||||
#define INFO_LOG(...) {LOG(VIDEO, ##__VA_ARGS__)}
|
||||
//#define ERROR_LOG(...) {LOG(VIDEO, ##__VA_ARGS__)}
|
||||
//#define INFO_LOG(...) {LOG(VIDEO, ##__VA_ARGS__)}
|
||||
#define PRIM_LOG(...) {LOG(VIDEO, ##__VA_ARGS__)}
|
||||
#define DEBUG_LOG(...) {LOG(VIDEO, ##__VA_ARGS__)}
|
||||
//#define DEBUG_LOG(...) {LOG(VIDEO, ##__VA_ARGS__)}
|
||||
#endif
|
||||
|
||||
#ifdef LOGGING
|
||||
|
Reference in New Issue
Block a user