mirror of https://github.com/PCSX2/pcsx2.git
GS/HW: Fix mipmap level not updating on live config change
This commit is contained in:
parent
728b3eb5db
commit
9ed33d4337
|
@ -204,8 +204,9 @@ void GSRendererHW::SetGameCRC(u32 crc, int options)
|
|||
m_hacks.SetGameCRC(m_game);
|
||||
|
||||
// Code for Automatic Mipmapping. Relies on game CRCs.
|
||||
m_mipmap = (GSConfig.HWMipmap >= HWMipmapLevel::Basic);
|
||||
if (GSConfig.HWMipmap == HWMipmapLevel::Automatic)
|
||||
m_hw_mipmap = GSConfig.HWMipmap;
|
||||
m_mipmap = (m_hw_mipmap >= HWMipmapLevel::Basic);
|
||||
if (m_hw_mipmap == HWMipmapLevel::Automatic)
|
||||
{
|
||||
switch (CRC::Lookup(crc).title)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue