FreeLookCamera: Fix savestate branch inconsistency.

Fixes https://bugs.dolphin-emu.org/issues/12168
This commit is contained in:
Admiral H. Curtiss 2020-06-28 02:28:01 +02:00
parent 2e8d1dd1db
commit 27e49c00b3
2 changed files with 3 additions and 1 deletions

View file

@ -274,6 +274,8 @@ void FreeLookCamera::DoState(PointerWrap& p)
{
const auto old_type = m_current_type;
p.Do(m_current_type);
p.Do(m_fov_x);
p.Do(m_fov_y);
if (old_type == m_current_type)
{
m_camera_controller->DoState(p);