diff options
| author | 2018-08-07 19:51:40 +0300 | |
|---|---|---|
| committer | 2018-08-07 19:51:40 +0300 | |
| commit | bc6d91a103670358ed34adf7845c0e45ef8f55c2 (patch) | |
| tree | fbe69d16b148f9f1fdac78c812167681a057af1b /src | |
| parent | Merge pull request #837 from lioncash/priv (diff) | |
| download | yuzu-bc6d91a103670358ed34adf7845c0e45ef8f55c2.tar.gz yuzu-bc6d91a103670358ed34adf7845c0e45ef8f55c2.tar.xz yuzu-bc6d91a103670358ed34adf7845c0e45ef8f55c2.zip | |
Lowered down the logging for methods
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/command_processor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp index 31ea3adad..dc485e811 100644 --- a/src/video_core/command_processor.cpp +++ b/src/video_core/command_processor.cpp | |||
| @@ -29,10 +29,10 @@ enum class BufferMethods { | |||
| 29 | }; | 29 | }; |
| 30 | 30 | ||
| 31 | void GPU::WriteReg(u32 method, u32 subchannel, u32 value, u32 remaining_params) { | 31 | void GPU::WriteReg(u32 method, u32 subchannel, u32 value, u32 remaining_params) { |
| 32 | LOG_WARNING(HW_GPU, | 32 | LOG_TRACE(HW_GPU, |
| 33 | "Processing method {:08X} on subchannel {} value " | 33 | "Processing method {:08X} on subchannel {} value " |
| 34 | "{:08X} remaining params {}", | 34 | "{:08X} remaining params {}", |
| 35 | method, subchannel, value, remaining_params); | 35 | method, subchannel, value, remaining_params); |
| 36 | 36 | ||
| 37 | if (method == static_cast<u32>(BufferMethods::BindObject)) { | 37 | if (method == static_cast<u32>(BufferMethods::BindObject)) { |
| 38 | // Bind the current subchannel to the desired engine id. | 38 | // Bind the current subchannel to the desired engine id. |