diff options
| author | 2014-05-16 21:10:30 -0400 | |
|---|---|---|
| committer | 2014-05-16 21:10:30 -0400 | |
| commit | 509f63486ac51ee692521940a535469c76cbf643 (patch) | |
| tree | 95400cc607ab66105d7421381873d98be5a4c401 /src | |
| parent | fixed typo in CMakeLists.txt (diff) | |
| download | yuzu-509f63486ac51ee692521940a535469c76cbf643.tar.gz yuzu-509f63486ac51ee692521940a535469c76cbf643.tar.xz yuzu-509f63486ac51ee692521940a535469c76cbf643.zip | |
fixed VFP DBG log for GCC
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/arm/interpreter/vfp/vfp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/interpreter/vfp/vfp.h b/src/core/arm/interpreter/vfp/vfp.h index ba23bd6ec..f738a615b 100644 --- a/src/core/arm/interpreter/vfp/vfp.h +++ b/src/core/arm/interpreter/vfp/vfp.h | |||
| @@ -21,7 +21,7 @@ | |||
| 21 | #ifndef __VFP_H__ | 21 | #ifndef __VFP_H__ |
| 22 | #define __VFP_H__ | 22 | #define __VFP_H__ |
| 23 | 23 | ||
| 24 | #define DBG(msg) DEBUG_LOG(ARM11, msg) | 24 | #define DBG(...) DEBUG_LOG(ARM11, __VA_ARGS__) |
| 25 | 25 | ||
| 26 | #define vfpdebug //printf | 26 | #define vfpdebug //printf |
| 27 | 27 | ||