mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
rsx: Fix initial boolean state of m_textures_dirty and m_vertex_textures_dirty
This commit is contained in:
parent
28e9cade2c
commit
f3877d11e8
2 changed files with 4 additions and 4 deletions
|
|
@ -304,8 +304,8 @@ namespace rsx
|
|||
};
|
||||
|
||||
m_rtts_dirty = true;
|
||||
memset(m_textures_dirty, -1, sizeof(m_textures_dirty));
|
||||
memset(m_vertex_textures_dirty, -1, sizeof(m_vertex_textures_dirty));
|
||||
m_textures_dirty.fill(true);
|
||||
m_vertex_textures_dirty.fill(true);
|
||||
|
||||
m_graphics_state = pipeline_state::all_dirty;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue