mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-26 09:29:45 +00:00
Fixed another uninitialised pointer.
This commit is contained in:
parent
e50adf1cc8
commit
819761f9fb
@ -110,7 +110,7 @@ void TapePlayer::process_next_event() {
|
||||
#pragma mark - Binary Player
|
||||
|
||||
BinaryTapePlayer::BinaryTapePlayer(unsigned int input_clock_rate) :
|
||||
TapePlayer(input_clock_rate), motor_is_running_(false), input_level_(false)
|
||||
TapePlayer(input_clock_rate), motor_is_running_(false), input_level_(false), delegate_(nullptr)
|
||||
{}
|
||||
|
||||
void BinaryTapePlayer::set_motor_control(bool enabled) {
|
||||
|
Loading…
Reference in New Issue
Block a user