mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-15 06:58:37 +02:00
Include tangent/binormal cache in savestates
This theoretically matters for RS2/RS3, although in practice these games reconfigure it each frame so it shouldn't matter for savestates.
This commit is contained in:
@ -564,6 +564,8 @@ void VertexManagerBase::DoState(PointerWrap& p)
|
||||
}
|
||||
|
||||
p.Do(m_zslope);
|
||||
p.Do(VertexLoaderManager::tangent_cache);
|
||||
p.Do(VertexLoaderManager::binormal_cache);
|
||||
}
|
||||
|
||||
void VertexManagerBase::CalculateZSlope(NativeVertexFormat* format)
|
||||
|
Reference in New Issue
Block a user