diff --git a/src/emucore/tia/Ball.hxx b/src/emucore/tia/Ball.hxx index eef249b6e..bf100db3f 100644 --- a/src/emucore/tia/Ball.hxx +++ b/src/emucore/tia/Ball.hxx @@ -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). */ diff --git a/src/emucore/tia/Player.hxx b/src/emucore/tia/Player.hxx index 41983d960..55b9ba820 100644 --- a/src/emucore/tia/Player.hxx +++ b/src/emucore/tia/Player.hxx @@ -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). */