From 04b8cbe6604d50908fbe9d332b09322ea52fabac Mon Sep 17 00:00:00 2001 From: cam900 Date: Tue, 24 Jul 2018 16:49:01 +0900 Subject: psx.cpp : Fix 24bit output --- src/devices/video/psx.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/devices/video/psx.h b/src/devices/video/psx.h index d54e45e913f..cd7928c1c99 100644 --- a/src/devices/video/psx.h +++ b/src/devices/video/psx.h @@ -297,10 +297,10 @@ private: uint16_t p_n_greensubtrans[ MAX_LEVEL * MAX_LEVEL ]; uint16_t p_n_bluesubtrans[ MAX_LEVEL * MAX_LEVEL ]; - uint16_t p_n_g0r0[ 0x10000 ]; - uint16_t p_n_b0[ 0x10000 ]; - uint16_t p_n_r1[ 0x10000 ]; - uint16_t p_n_b1g1[ 0x10000 ]; + uint32_t p_n_g0r0[ 0x10000 ]; + uint32_t p_n_b0[ 0x10000 ]; + uint32_t p_n_r1[ 0x10000 ]; + uint32_t p_n_b1g1[ 0x10000 ]; devcb_write_line m_vblank_handler; -- cgit v1.2.3