From 819761f9fb21d475e91bee73285fe91b08d5815c Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 2 Aug 2017 13:56:35 -0400 Subject: [PATCH] Fixed another uninitialised pointer. --- Storage/Tape/Tape.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Storage/Tape/Tape.cpp b/Storage/Tape/Tape.cpp index f59314889..280b02100 100644 --- a/Storage/Tape/Tape.cpp +++ b/Storage/Tape/Tape.cpp @@ -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) {