diff options
author | 2025-04-25 12:50:12 -0400 | |
---|---|---|
committer | 2025-04-26 02:50:12 +1000 | |
commit | 0855e13672a17e5601eb72491f8a013f044c20d3 (patch) | |
tree | 95e344618252c68379a81ed9a069b8ae37bf039b /src/lib/formats/kim1_cas.cpp | |
parent | bbb45dfa649e7d5901ea26cd4b7b2d5e8f6f4aca (diff) |
formats/cassimg.cpp: Pass byte count to wave fill function for legacy cassette formats. (#13294)
formats/tzx_cass.cpp: Check length of data read for TAP format blocks (fixes MT08952).
Diffstat (limited to 'src/lib/formats/kim1_cas.cpp')
-rw-r--r-- | src/lib/formats/kim1_cas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/kim1_cas.cpp b/src/lib/formats/kim1_cas.cpp index 56e91f0936d..de2ee022632 100644 --- a/src/lib/formats/kim1_cas.cpp +++ b/src/lib/formats/kim1_cas.cpp @@ -145,7 +145,7 @@ static int kim1_handle_kim(int16_t *buffer, const uint8_t *casdata) /******************************************************************* Generate samples for the tape image ********************************************************************/ -static int kim1_kim_fill_wave(int16_t *buffer, int sample_count, const uint8_t *bytes) +static int kim1_kim_fill_wave(int16_t *buffer, int sample_count, const uint8_t *bytes, int) { return kim1_handle_kim( buffer, bytes ); } |