diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2016-02-11 18:41:15 +0100 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2016-02-12 20:51:16 +0100 |
commit | 6c71858c5c698a718045ba44eda495080417a84b (patch) | |
tree | 0dc7778532b0e2d1c5acd0224266b8a67d961155 /src/video_core/debug_utils | |
parent | Merge pull request #1264 from bunnei/fragment-lighting-hw (diff) | |
download | yuzu-6c71858c5c698a718045ba44eda495080417a84b.tar yuzu-6c71858c5c698a718045ba44eda495080417a84b.tar.gz yuzu-6c71858c5c698a718045ba44eda495080417a84b.tar.bz2 yuzu-6c71858c5c698a718045ba44eda495080417a84b.tar.lz yuzu-6c71858c5c698a718045ba44eda495080417a84b.tar.xz yuzu-6c71858c5c698a718045ba44eda495080417a84b.tar.zst yuzu-6c71858c5c698a718045ba44eda495080417a84b.zip |
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index 4f66dbd65..6e6fd7335 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp @@ -201,11 +201,11 @@ void DumpShader(const std::string& filename, const Regs::ShaderConfig& config, c if (it == output_info_table.end()) { 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; + output_info_table.back().type.Assign(type); + output_info_table.back().component_mask.Assign(component_mask); + output_info_table.back().id.Assign(i); } else { - it->component_mask = it->component_mask | component_mask; + it->component_mask.Assign(it->component_mask | component_mask); } } catch (const std::out_of_range& ) { DEBUG_ASSERT_MSG(false, "Unknown output attribute mapping"); |