mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 21:07:52 +00:00
video_core/macro_interpreter: Remove assertion within FetchParameter()
We can just use .at(), which essentially does the same thing, but with less code.
This commit is contained in:
parent
1efdb4897e
commit
00e7190e29
1 changed files with 1 additions and 2 deletions
|
@ -223,8 +223,7 @@ void MacroInterpreter::ProcessResult(ResultOperation operation, u32 reg, u32 res
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 MacroInterpreter::FetchParameter() {
|
u32 MacroInterpreter::FetchParameter() {
|
||||||
ASSERT(next_parameter_index < parameters.size());
|
return parameters.at(next_parameter_index++);
|
||||||
return parameters[next_parameter_index++];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 MacroInterpreter::GetRegister(u32 register_id) const {
|
u32 MacroInterpreter::GetRegister(u32 register_id) const {
|
||||||
|
|
Loading…
Reference in a new issue