diff options
author | 2025-01-27 17:11:46 -0500 | |
---|---|---|
committer | 2025-01-27 17:11:46 -0500 | |
commit | cd3c2420fb18313bccb47431724cda86fa00067e (patch) | |
tree | 6681d32e835304fdf51c6036532be5970063c697 /src/lib/formats/oric_tap.cpp | |
parent | cdb94c2be58ccbc427871890017e2213ee634079 (diff) |
lib/formats: Fix build after cdb94c2be58ccbc427871890017e2213ee634079
Diffstat (limited to 'src/lib/formats/oric_tap.cpp')
-rw-r--r-- | src/lib/formats/oric_tap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/oric_tap.cpp b/src/lib/formats/oric_tap.cpp index 4d4476a072f..47a1447de68 100644 --- a/src/lib/formats/oric_tap.cpp +++ b/src/lib/formats/oric_tap.cpp @@ -348,7 +348,7 @@ static int oric_cassette_calculate_size_in_samples(const uint8_t *bytes, int len static int oric_cassette_fill_wave(int16_t *buffer, int length, const uint8_t *bytes) { unsigned char header[9]; - uint8_t *data_ptr; + const uint8_t *data_ptr; int16_t *p; int i; uint8_t data; |