mirror of https://github.com/stella-emu/stella.git
Add getters for old / new GRPx / ENABL registers.
This commit is contained in:
parent
f51c6c983b
commit
ea7792d57a
|
@ -71,6 +71,9 @@ class Ball : public Serializable
|
|||
uInt8 getPosition() const;
|
||||
void setPosition(uInt8 newPosition);
|
||||
|
||||
bool getENABLOld() const { return myIsEnabledOld; }
|
||||
bool getENABLNew() const { return myIsEnabledNew; }
|
||||
|
||||
/**
|
||||
Serializable methods (see that class for more information).
|
||||
*/
|
||||
|
|
|
@ -75,6 +75,9 @@ class Player : public Serializable
|
|||
uInt8 getPosition() const;
|
||||
void setPosition(uInt8 newPosition);
|
||||
|
||||
uInt8 getGRPOld() const { return myPatternOld; };
|
||||
uInt8 getGRPNew() const { return myPatternNew; };
|
||||
|
||||
/**
|
||||
Serializable methods (see that class for more information).
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue