mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Fix GCC compile (nw)
This commit is contained in:
parent
7740759fbc
commit
bd5a8dd4f5
1 changed files with 3 additions and 3 deletions
|
@ -678,7 +678,7 @@ READ8_MEMBER( p500_state::vic_videoram_r )
|
|||
&cs1, &sidcs, &extprtcs, &ciacs, &aciacs, &tript1cs, &tript2cs, &aec, &vsysaden);
|
||||
|
||||
UINT8 data = 0xff;
|
||||
UINT8 clrnib = 0xf;
|
||||
// UINT8 clrnib = 0xf;
|
||||
|
||||
if (vsysaden)
|
||||
{
|
||||
|
@ -686,10 +686,10 @@ READ8_MEMBER( p500_state::vic_videoram_r )
|
|||
{
|
||||
data = m_ram->pointer()[(m_vicbnksel << 14) | offset];
|
||||
}
|
||||
if (!clrnibcs)
|
||||
/* if (!clrnibcs)
|
||||
{
|
||||
clrnib = m_color_ram[offset & 0x3ff];
|
||||
}
|
||||
}*/
|
||||
if (!vidmatcs)
|
||||
{
|
||||
data = m_video_ram[offset & 0x3ff];
|
||||
|
|
Loading…
Reference in a new issue