diff options
| author | hrydgard <hrydgard@gmail.com> | 2009-02-21 12:07:03 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2009-02-21 12:07:03 +0000 |
| commit | 28cbd0a6ba531576227580ef7e263d23d704afb4 (patch) | |
| tree | 56bf1b0eae0c6cc4a738ce85ab7b78ca8f653f5d /Source/Core/VideoCommon | |
| parent | 76a78dd60d4eefdb8f1fada8e63bac7b0c4f5a94 (diff) | |
CPlugin had a non-virtual destructor. This fixes that, plus reindents a bunch of code.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2332 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/Src/VideoCommon.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/Core/VideoCommon/Src/VideoCommon.h b/Source/Core/VideoCommon/Src/VideoCommon.h index 0a99340c02..5bd47db4f4 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 PRIM_LOG(...) LOG(VIDEO, __VA_ARGS__)
-#define DEBUG_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__)}
#else
-#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 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__)}
#endif
#ifdef LOGGING
|
