mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +03:00
fix compile (nw)
This commit is contained in:
parent
200b75022d
commit
39a905f270
@ -2735,7 +2735,7 @@ WRITE8_HANDLER(s3_port_03d0_w)
|
|||||||
static void s3_write_fg(UINT32 offset)
|
static void s3_write_fg(UINT32 offset)
|
||||||
{
|
{
|
||||||
UINT8 dst = vga.memory[offset];
|
UINT8 dst = vga.memory[offset];
|
||||||
UINT8 src;
|
UINT8 src = 0;
|
||||||
|
|
||||||
// determine source
|
// determine source
|
||||||
switch(s3.fgmix & 0x0060)
|
switch(s3.fgmix & 0x0060)
|
||||||
@ -2811,7 +2811,7 @@ static void s3_write_fg(UINT32 offset)
|
|||||||
static void s3_write_bg(UINT32 offset)
|
static void s3_write_bg(UINT32 offset)
|
||||||
{
|
{
|
||||||
UINT8 dst = vga.memory[offset];
|
UINT8 dst = vga.memory[offset];
|
||||||
UINT8 src;
|
UINT8 src = 0;
|
||||||
// determine source
|
// determine source
|
||||||
switch(s3.bgmix & 0x0060)
|
switch(s3.bgmix & 0x0060)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user