mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01:00
Merge pull request #9362 from iwubcode/freelook_fix_crash
VideoCommon: Fix crash that occurs on loading a fifo log when Free Look is enabled
This commit is contained in:
commit
2917af03ec
@ -175,6 +175,11 @@ private:
|
||||
};
|
||||
} // namespace
|
||||
|
||||
FreeLookCamera::FreeLookCamera()
|
||||
{
|
||||
SetControlType(FreeLook::ControlType::SixAxis);
|
||||
}
|
||||
|
||||
void FreeLookCamera::SetControlType(FreeLook::ControlType type)
|
||||
{
|
||||
if (m_current_type && *m_current_type == type)
|
||||
|
@ -41,6 +41,7 @@ public:
|
||||
class FreeLookCamera
|
||||
{
|
||||
public:
|
||||
FreeLookCamera();
|
||||
void SetControlType(FreeLook::ControlType type);
|
||||
Common::Matrix44 GetView();
|
||||
Common::Vec2 GetFieldOfView() const;
|
||||
|
@ -111,6 +111,7 @@ Renderer::Renderer(int backbuffer_width, int backbuffer_height, float backbuffer
|
||||
CalculateTargetSize();
|
||||
|
||||
m_is_game_widescreen = SConfig::GetInstance().bWii && Config::Get(Config::SYSCONF_WIDESCREEN);
|
||||
g_freelook_camera.SetControlType(FreeLook::GetActiveConfig().camera_config.control_type);
|
||||
}
|
||||
|
||||
Renderer::~Renderer() = default;
|
||||
|
Loading…
x
Reference in New Issue
Block a user