diff options
Diffstat (limited to 'src/lib/formats/zx81_p.cpp')
-rw-r--r-- | src/lib/formats/zx81_p.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/formats/zx81_p.cpp b/src/lib/formats/zx81_p.cpp index 2b541a92f18..515f5b78581 100644 --- a/src/lib/formats/zx81_p.cpp +++ b/src/lib/formats/zx81_p.cpp @@ -173,7 +173,7 @@ static int zx81_cassette_calculate_size_in_samples(const uint8_t *bytes, int len return (number_of_0_data+number_of_0_name)*ZX81_LOW_BIT_LENGTH + (number_of_1_data+number_of_1_name)*ZX81_HIGH_BIT_LENGTH + ZX81_PILOT_LENGTH; } -static int zx81_cassette_fill_wave(int16_t *buffer, int length, const uint8_t *bytes) +static int zx81_cassette_fill_wave(int16_t *buffer, int length, const uint8_t *bytes, int) { int16_t * p = buffer; int i; @@ -250,7 +250,7 @@ static int zx80_cassette_calculate_size_in_samples(const uint8_t *bytes, int len return number_of_0_data*ZX81_LOW_BIT_LENGTH + number_of_1_data*ZX81_HIGH_BIT_LENGTH + ZX81_PILOT_LENGTH; } -static int zx80_cassette_fill_wave(int16_t *buffer, int length, const uint8_t *bytes) +static int zx80_cassette_fill_wave(int16_t *buffer, int length, const uint8_t *bytes, int) { int16_t * p = buffer; int i; |