1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-30 22:56:03 +00:00

Fixed another uninitialised pointer.

This commit is contained in:
Thomas Harte 2017-08-02 13:56:35 -04:00
parent e50adf1cc8
commit 819761f9fb

View File

@ -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) {