1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 02:17:08 +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
+1 -1
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) {