mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
rsx/overlays: Fix crash
This commit is contained in:
parent
901d9f3f6e
commit
7d103fe0f0
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ namespace rsx
|
|||
}
|
||||
|
||||
// The top must never be an empty ref. Pop all empties.
|
||||
while (!m_input_token_stack.front().target && m_input_token_stack.size())
|
||||
while (!m_input_token_stack.empty() && !m_input_token_stack.front().target)
|
||||
{
|
||||
m_input_token_stack.pop_front();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue