From 1c5333a42c60fe78b7d5765456d0206b45558725 Mon Sep 17 00:00:00 2001 From: cam900 Date: Sun, 22 Jul 2018 00:19:17 +0900 Subject: [PATCH] psx.cpp : Forgot for fix states --- src/devices/video/psx.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ); }