diff options
| author | hrydgard <hrydgard@gmail.com> | 2009-02-28 01:26:56 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2009-02-28 01:26:56 +0000 |
| commit | 4bdb4aa0d1c8520488583ba79c9f5ab6e5656eca (patch) | |
| tree | 05cb77888380f7814d96b356c8f538bb736799fa /Source/Core/VideoCommon | |
| parent | 2783f24cfeb39731c5e41fe73ec40d36b266b467 (diff) | |
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
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/Src/VideoCommon.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/Core/VideoCommon/Src/VideoCommon.h b/Source/Core/VideoCommon/Src/VideoCommon.h index 7e4a8a1138..4143c8a202 100644 --- a/Source/Core/VideoCommon/Src/VideoCommon.h +++ b/Source/Core/VideoCommon/Src/VideoCommon.h @@ -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 |
