diff options
author | Lioncash <mathew1800@gmail.com> | 2015-02-17 23:42:28 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-02-17 23:57:23 +0100 |
commit | 5d2366e1e9adaa5b4275127dff5005f2ef2f8ff8 (patch) | |
tree | fbe9bc5f148ee6c5e0abf6a3c284f65d88d7731c /src/video_core/debug_utils | |
parent | Merge pull request #529 from Subv/master (diff) | |
download | yuzu-5d2366e1e9adaa5b4275127dff5005f2ef2f8ff8.tar yuzu-5d2366e1e9adaa5b4275127dff5005f2ef2f8ff8.tar.gz yuzu-5d2366e1e9adaa5b4275127dff5005f2ef2f8ff8.tar.bz2 yuzu-5d2366e1e9adaa5b4275127dff5005f2ef2f8ff8.tar.lz yuzu-5d2366e1e9adaa5b4275127dff5005f2ef2f8ff8.tar.xz yuzu-5d2366e1e9adaa5b4275127dff5005f2ef2f8ff8.tar.zst yuzu-5d2366e1e9adaa5b4275127dff5005f2ef2f8ff8.zip |
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index 8c4ec1044..0beb72e6b 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp @@ -189,7 +189,7 @@ void DumpShader(const u32* binary_data, u32 binary_size, const u32* swizzle_data ); if (it == output_info_table.end()) { - output_info_table.push_back({}); + output_info_table.emplace_back(); output_info_table.back().type = type; output_info_table.back().component_mask = component_mask; output_info_table.back().id = i; @@ -285,7 +285,7 @@ void OnPicaRegWrite(u32 id, u32 value) if (!is_pica_tracing) return; - pica_trace->writes.push_back({id, value}); + pica_trace->writes.emplace_back(id, value); } std::unique_ptr<PicaTrace> FinishPicaTracing() |