summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author DavidHaywood <28625134+DavidHaywood@users.noreply.github.com>2019-06-17 11:47:25 +0100
committer DavidHaywood <28625134+DavidHaywood@users.noreply.github.com>2019-06-17 11:47:25 +0100
commit5d0ce0a64429b2a9ae3220fa3c08e1043a6be2cf (patch)
tree5b96e025118a39e4ef67083abb93f4597cd72870
parent92b0401142f9da9dd68e24156864ae29bc76f986 (diff)
revert tzx_cas changes from 0.202, they break things
-rw-r--r--src/lib/formats/tzx_cas.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/lib/formats/tzx_cas.cpp b/src/lib/formats/tzx_cas.cpp
index 29897dc49b4..d950419361e 100644
--- a/src/lib/formats/tzx_cas.cpp
+++ b/src/lib/formats/tzx_cas.cpp
@@ -282,17 +282,13 @@ static int tzx_cas_handle_block( int16_t **buffer, const uint8_t *bytes, int pau
}
}
/* pause */
- if (data_size > 0)
+ if (pause > 0)
{
int start_pause_samples = millisec_to_samplecount(1);
+ int rest_pause_samples = millisec_to_samplecount(pause - 1);
tzx_output_wave(buffer, start_pause_samples);
size += start_pause_samples;
- }
- if (pause > 0)
- {
- int rest_pause_samples = millisec_to_samplecount(pause - 1);
-
wave_data = WAVE_LOW;
tzx_output_wave(buffer, rest_pause_samples);
size += rest_pause_samples;