mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
nes: fixed array access above array bounds. (no whatsnew)
This commit is contained in:
parent
7c77d4feb0
commit
acae1e5c14
@ -301,7 +301,7 @@ public:
|
||||
virtual void pcb_reset();
|
||||
|
||||
private:
|
||||
UINT8 m_reg[3];
|
||||
UINT8 m_reg[4];
|
||||
};
|
||||
|
||||
|
||||
@ -585,7 +585,7 @@ public:
|
||||
virtual void pcb_reset();
|
||||
|
||||
private:
|
||||
UINT8 m_reg[3];
|
||||
UINT8 m_reg[4];
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user