diff options
author | Sam Spilsbury <smspillaz@gmail.com> | 2016-04-24 17:41:44 +0200 |
---|---|---|
committer | Sam Spilsbury <smspillaz@gmail.com> | 2016-04-24 18:40:03 +0200 |
commit | 656a4424332824c144ef5b91482ee2a8d89fc0fb (patch) | |
tree | 575264137844f57c51905e747c4ebc47e1f8307a /src/video_core/shader | |
parent | shader: Handle non-CALL opcodes with a break (diff) | |
download | yuzu-656a4424332824c144ef5b91482ee2a8d89fc0fb.tar yuzu-656a4424332824c144ef5b91482ee2a8d89fc0fb.tar.gz yuzu-656a4424332824c144ef5b91482ee2a8d89fc0fb.tar.bz2 yuzu-656a4424332824c144ef5b91482ee2a8d89fc0fb.tar.lz yuzu-656a4424332824c144ef5b91482ee2a8d89fc0fb.tar.xz yuzu-656a4424332824c144ef5b91482ee2a8d89fc0fb.tar.zst yuzu-656a4424332824c144ef5b91482ee2a8d89fc0fb.zip |
Diffstat (limited to 'src/video_core/shader')
-rw-r--r-- | src/video_core/shader/shader_jit_x64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/shader_jit_x64.cpp b/src/video_core/shader/shader_jit_x64.cpp index 9ee4065bf..b7747fa42 100644 --- a/src/video_core/shader/shader_jit_x64.cpp +++ b/src/video_core/shader/shader_jit_x64.cpp @@ -856,7 +856,7 @@ void JitShader::Compile() { uintptr_t size = reinterpret_cast<uintptr_t>(GetCodePtr()) - reinterpret_cast<uintptr_t>(program); ASSERT_MSG(size <= MAX_SHADER_SIZE, "Compiled a shader that exceeds the allocated size!"); - LOG_DEBUG(HW_GPU, "Compiled shader size=%d", size); + LOG_DEBUG(HW_GPU, "Compiled shader size=%lu", size); } JitShader::JitShader() { |