diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2020-06-15 15:05:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-15 15:05:21 +0200 |
commit | 5c9dee2c94c84965bc79c74531827577a02a5d7a (patch) | |
tree | e4743e2aaf344790862f0d519d85fc7941636143 | |
parent | Merge pull request #4070 from ogniK5377/GetTPCMasks-fix (diff) | |
parent | video_core/macro_jit_x64: Remove initializer in member variable (diff) | |
download | yuzu-5c9dee2c94c84965bc79c74531827577a02a5d7a.tar yuzu-5c9dee2c94c84965bc79c74531827577a02a5d7a.tar.gz yuzu-5c9dee2c94c84965bc79c74531827577a02a5d7a.tar.bz2 yuzu-5c9dee2c94c84965bc79c74531827577a02a5d7a.tar.lz yuzu-5c9dee2c94c84965bc79c74531827577a02a5d7a.tar.xz yuzu-5c9dee2c94c84965bc79c74531827577a02a5d7a.tar.zst yuzu-5c9dee2c94c84965bc79c74531827577a02a5d7a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/macro/macro_jit_x64.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/macro/macro_jit_x64.h b/src/video_core/macro/macro_jit_x64.h index 21ee157cf..71f738b9a 100644 --- a/src/video_core/macro/macro_jit_x64.h +++ b/src/video_core/macro/macro_jit_x64.h @@ -85,8 +85,8 @@ private: std::optional<Macro::Opcode> next_opcode{}; ProgramType program{nullptr}; - std::array<Xbyak::Label, MAX_CODE_SIZE> labels{}; - std::array<Xbyak::Label, MAX_CODE_SIZE> delay_skip{}; + std::array<Xbyak::Label, MAX_CODE_SIZE> labels; + std::array<Xbyak::Label, MAX_CODE_SIZE> delay_skip; Xbyak::Label end_of_code{}; bool is_delay_slot{}; |