summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-11-26 11:52:10 +0100
committerDavid Marcec <dmarcecguzman@gmail.com>2018-11-26 11:52:10 +0100
commitdace6087d66fa1fa012c1dfdd2590fc197cc61d5 (patch)
tree87a2dbf0ff0859b1f16d66f978c22145167e1235 /src/core/hle/service/audio
parentImproved error messages in AM, HwOpus and NvMap (diff)
downloadyuzu-dace6087d66fa1fa012c1dfdd2590fc197cc61d5.tar
yuzu-dace6087d66fa1fa012c1dfdd2590fc197cc61d5.tar.gz
yuzu-dace6087d66fa1fa012c1dfdd2590fc197cc61d5.tar.bz2
yuzu-dace6087d66fa1fa012c1dfdd2590fc197cc61d5.tar.lz
yuzu-dace6087d66fa1fa012c1dfdd2590fc197cc61d5.tar.xz
yuzu-dace6087d66fa1fa012c1dfdd2590fc197cc61d5.tar.zst
yuzu-dace6087d66fa1fa012c1dfdd2590fc197cc61d5.zip
Diffstat (limited to 'src/core/hle/service/audio')
-rw-r--r--src/core/hle/service/audio/hwopus.cpp2
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:
LOG_ERROR(Audio,
"Incorrect sample count received from opus_decode, "
"output_sample_count={}, frame_size={}, data_sz_from_hdr={}",
- out_sample_count, frame_size, hdr.sz);
+ out_sample_count, frame_size, static_cast<u32>(hdr.sz));
return false;
}
const auto end_time = std::chrono::high_resolution_clock::now() - start_time;