psx.cpp : Forgot for fix states

This commit is contained in:
cam900 2018-07-22 00:19:17 +09:00
parent 1f3f544638
commit 1c5333a42c

View File

@ -44,18 +44,18 @@ void psxgpu_device::device_start()
if (type() == CXD8538Q) if (type() == CXD8538Q)
{ {
m_has_sgram = true; // VRAM m_has_sgram = false; // VRAM
psx_gpu_init( 1 ); psx_gpu_init( 1 );
} }
else else
{ {
if (type() == CXD8514Q) if (type() == CXD8514Q)
{ {
m_has_sgram = true; // VRAM m_has_sgram = false; // VRAM
} }
else else
{ {
m_has_sgram = false; // SGRAM m_has_sgram = true; // SGRAM
} }
psx_gpu_init( 2 ); psx_gpu_init( 2 );
} }