diff options
| -rw-r--r-- | src/core/hle/service/audio/hwopus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/hwopus.cpp b/src/core/hle/service/audio/hwopus.cpp index 5e3672dbd..a850cadc8 100644 --- a/src/core/hle/service/audio/hwopus.cpp +++ b/src/core/hle/service/audio/hwopus.cpp | |||
| @@ -124,7 +124,7 @@ private: | |||
| 124 | LOG_ERROR(Audio, | 124 | LOG_ERROR(Audio, |
| 125 | "Incorrect sample count received from opus_decode, " | 125 | "Incorrect sample count received from opus_decode, " |
| 126 | "output_sample_count={}, frame_size={}, data_sz_from_hdr={}", | 126 | "output_sample_count={}, frame_size={}, data_sz_from_hdr={}", |
| 127 | out_sample_count, frame_size, hdr.sz); | 127 | out_sample_count, frame_size, static_cast<u32>(hdr.sz)); |
| 128 | return false; | 128 | return false; |
| 129 | } | 129 | } |
| 130 | const auto end_time = std::chrono::high_resolution_clock::now() - start_time; | 130 | const auto end_time = std::chrono::high_resolution_clock::now() - start_time; |