diff options
author | bunnei <bunneidev@gmail.com> | 2015-08-11 23:55:24 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-08-11 23:55:24 +0200 |
commit | 35f336066354bd667524d99439a5e792ae7e7366 (patch) | |
tree | f1cb819c0574cc3a6cbbdbaf8d71f90ea222c60a /src/video_core | |
parent | Merge pull request #1023 from yuriks/gl-state-bugs (diff) | |
parent | ARM Core, Video Core, CitraQt, Citrace: Use CommonTypes types instead of the standard u?int*_t types. (diff) | |
download | yuzu-35f336066354bd667524d99439a5e792ae7e7366.tar yuzu-35f336066354bd667524d99439a5e792ae7e7366.tar.gz yuzu-35f336066354bd667524d99439a5e792ae7e7366.tar.bz2 yuzu-35f336066354bd667524d99439a5e792ae7e7366.tar.lz yuzu-35f336066354bd667524d99439a5e792ae7e7366.tar.xz yuzu-35f336066354bd667524d99439a5e792ae7e7366.tar.zst yuzu-35f336066354bd667524d99439a5e792ae7e7366.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index e9a858411..572b4fd62 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp @@ -18,6 +18,7 @@ #include "common/assert.h" #include "common/color.h" +#include "common/common_types.h" #include "common/file_util.h" #include "common/math_util.h" #include "common/vector_math.h" @@ -233,7 +234,7 @@ void DumpShader(const u32* binary_data, u32 binary_size, const u32* swizzle_data dvle.main_offset_words = main_offset; dvle.output_register_table_offset = write_offset - dvlb.dvle_offset; - dvle.output_register_table_size = static_cast<uint32_t>(output_info_table.size()); + dvle.output_register_table_size = static_cast<u32>(output_info_table.size()); QueueForWriting((u8*)output_info_table.data(), static_cast<u32>(output_info_table.size() * sizeof(OutputRegisterInfo))); // TODO: Create a label table for "main" |