mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-12-28 04:01:48 +01:00
~fixed VDP bug (Window Position) from previous revision
~fixed Win32 makefile
This commit is contained in:
parent
a0fe59e1fc
commit
f634e0719b
@ -46,8 +46,6 @@ OBJECTS += obj/blip.o \
|
|||||||
|
|
||||||
OBJECTS += obj/eq.o \
|
OBJECTS += obj/eq.o \
|
||||||
|
|
||||||
OBJECTS += obj/filters.o \
|
|
||||||
|
|
||||||
OBJECTS += obj/sram.o \
|
OBJECTS += obj/sram.o \
|
||||||
obj/eeprom.o \
|
obj/eeprom.o \
|
||||||
obj/svp.o \
|
obj/svp.o \
|
||||||
|
@ -337,7 +337,7 @@ void vdp_ctrl_w(unsigned int data)
|
|||||||
/* VDP register write */
|
/* VDP register write */
|
||||||
uint8 r = (data >> 8) & 0x1F;
|
uint8 r = (data >> 8) & 0x1F;
|
||||||
uint8 d = data & 0xFF;
|
uint8 d = data & 0xFF;
|
||||||
reg_w(r, d);
|
reg_w(r,d);
|
||||||
}
|
}
|
||||||
else pending = 1;
|
else pending = 1;
|
||||||
|
|
||||||
@ -835,6 +835,7 @@ static inline void reg_w(unsigned int r, unsigned int d)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 17: /* update clipping */
|
case 17: /* update clipping */
|
||||||
|
reg[17] = d;
|
||||||
window_clip();
|
window_clip();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user