mirror of https://github.com/PCSX2/pcsx2.git
Fix unintentional alteration of tDMAC_STAT in r3550.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3552 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
8d07e78b86
commit
be9e225468
24
pcsx2/Dmac.h
24
pcsx2/Dmac.h
|
@ -438,20 +438,18 @@ union tDMAC_CTRL {
|
|||
|
||||
union tDMAC_STAT {
|
||||
struct {
|
||||
struct {
|
||||
u32 CIS : 10;
|
||||
u32 _reserved1 : 3;
|
||||
u32 SIS : 1;
|
||||
u32 MEIS : 1;
|
||||
u32 BEIS : 1;
|
||||
u32 CIM : 10;
|
||||
u32 _reserved2 : 3;
|
||||
u32 SIM : 1;
|
||||
u32 MEIM : 1;
|
||||
u32 _reserved3 : 1;
|
||||
};
|
||||
u32 _u32;
|
||||
u32 CIS : 10;
|
||||
u32 _reserved1 : 3;
|
||||
u32 SIS : 1;
|
||||
u32 MEIS : 1;
|
||||
u32 BEIS : 1;
|
||||
u32 CIM : 10;
|
||||
u32 _reserved2 : 3;
|
||||
u32 SIM : 1;
|
||||
u32 MEIM : 1;
|
||||
u32 _reserved3 : 1;
|
||||
};
|
||||
u32 _u32;
|
||||
struct {
|
||||
u16 _u16lo;
|
||||
u16 _u16hi;
|
||||
|
|
Loading…
Reference in New Issue