diff --git a/src/devices/video/psx.cpp b/src/devices/video/psx.cpp index ed833b171ba..528d5f176c9 100644 --- a/src/devices/video/psx.cpp +++ b/src/devices/video/psx.cpp @@ -44,18 +44,18 @@ void psxgpu_device::device_start() if (type() == CXD8538Q) { - m_has_sgram = true; // VRAM + m_has_sgram = false; // VRAM psx_gpu_init( 1 ); } else { if (type() == CXD8514Q) { - m_has_sgram = true; // VRAM + m_has_sgram = false; // VRAM } else { - m_has_sgram = false; // SGRAM + m_has_sgram = true; // SGRAM } psx_gpu_init( 2 ); }