mirror of https://github.com/stella-emu/stella.git
fix #560
This commit is contained in:
parent
854e093b84
commit
a98c5c3eb4
|
@ -328,10 +328,10 @@ class Controller : public Serializable
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/// The boolean value on each digital pin
|
/// The boolean value on each digital pin
|
||||||
std::array<bool, 5> myDigitalPinState{true};
|
std::array<bool, 5> myDigitalPinState{true, true, true, true, true};
|
||||||
|
|
||||||
/// The analog value on each analog pin
|
/// The analog value on each analog pin
|
||||||
std::array<Int32, 2> myAnalogPinValue{MAX_RESISTANCE};
|
std::array<Int32, 2> myAnalogPinValue{MAX_RESISTANCE, MAX_RESISTANCE};
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Following constructors and assignment operators not supported
|
// Following constructors and assignment operators not supported
|
||||||
|
|
Loading…
Reference in New Issue