diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-05 22:56:34 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-05 22:56:58 -0400 |
commit | 00e7190e29c0368abb7ef172a73f524d975ed7c9 (patch) | |
tree | 87126b84efc98a0a6e6d79902282b1841e527562 /src/video_core/macro_interpreter.cpp | |
parent | 1efdb4897ed80a12b3d6fd2ec0575c86d60d95de (diff) |
video_core/macro_interpreter: Remove assertion within FetchParameter()
We can just use .at(), which essentially does the same thing, but with
less code.
Diffstat (limited to 'src/video_core/macro_interpreter.cpp')
-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 4c4e8d603a..524d9ea5a9 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 { |