mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-12-27 11:41: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/filters.o \
|
||||
|
||||
OBJECTS += obj/sram.o \
|
||||
obj/eeprom.o \
|
||||
obj/svp.o \
|
||||
|
@ -337,7 +337,7 @@ void vdp_ctrl_w(unsigned int data)
|
||||
/* VDP register write */
|
||||
uint8 r = (data >> 8) & 0x1F;
|
||||
uint8 d = data & 0xFF;
|
||||
reg_w(r, d);
|
||||
reg_w(r,d);
|
||||
}
|
||||
else pending = 1;
|
||||
|
||||
@ -835,6 +835,7 @@ static inline void reg_w(unsigned int r, unsigned int d)
|
||||
break;
|
||||
|
||||
case 17: /* update clipping */
|
||||
reg[17] = d;
|
||||
window_clip();
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user