diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-06 04:56:34 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-06 04:56:58 +0200 |
commit | 00e7190e29c0368abb7ef172a73f524d975ed7c9 (patch) | |
tree | 87126b84efc98a0a6e6d79902282b1841e527562 | |
parent | video_core/macro_interpreter: Simplify GetRegister() (diff) | |
download | yuzu-00e7190e29c0368abb7ef172a73f524d975ed7c9.tar yuzu-00e7190e29c0368abb7ef172a73f524d975ed7c9.tar.gz yuzu-00e7190e29c0368abb7ef172a73f524d975ed7c9.tar.bz2 yuzu-00e7190e29c0368abb7ef172a73f524d975ed7c9.tar.lz yuzu-00e7190e29c0368abb7ef172a73f524d975ed7c9.tar.xz yuzu-00e7190e29c0368abb7ef172a73f524d975ed7c9.tar.zst yuzu-00e7190e29c0368abb7ef172a73f524d975ed7c9.zip |
-rw-r--r-- | src/video_core/macro_interpreter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/macro_interpreter.cpp b/src/video_core/macro_interpreter.cpp index 4c4e8d603..524d9ea5a 100644 --- a/src/video_core/macro_interpreter.cpp +++ b/src/video_core/macro_interpreter.cpp @@ -223,8 +223,7 @@ void MacroInterpreter::ProcessResult(ResultOperation operation, u32 reg, u32 res } u32 MacroInterpreter::FetchParameter() { - ASSERT(next_parameter_index < parameters.size()); - return parameters[next_parameter_index++]; + return parameters.at(next_parameter_index++); } u32 MacroInterpreter::GetRegister(u32 register_id) const { |