diff options
author | 2015-12-04 07:06:18 +0100 | |
---|---|---|
committer | 2015-12-04 07:06:18 +0100 | |
commit | 5a2f80dcde2e76356bf568f1e2d71b054a7db45b (patch) | |
tree | 31e8369980a2e4548223f529c31e8ca6ade5ce20 /src/lib/formats/mz_cas.cpp | |
parent | 41681c1703244abe68cbcf3096ca259bd061cc08 (diff) |
clang-modernize part 5
Diffstat (limited to 'src/lib/formats/mz_cas.cpp')
-rw-r--r-- | src/lib/formats/mz_cas.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/formats/mz_cas.cpp b/src/lib/formats/mz_cas.cpp index 154c4ae91c9..3a6b934b882 100644 --- a/src/lib/formats/mz_cas.cpp +++ b/src/lib/formats/mz_cas.cpp @@ -306,7 +306,7 @@ static const struct CassetteLegacyWaveFiller mz700_legacy_fill_wave = fill_wave, /* fill_wave */ 1, /* chunk_size */ 2 * BYTE_SAMPLES, /* chunk_samples */ - NULL, /* chunk_sample_calc */ + nullptr, /* chunk_sample_calc */ 4400, // sample_frequency (tested ok with MZ-80K, MZ-80A, MZ-700, MZ-800, MZ-1500) MZ700_WAVESAMPLES_HEADER, /* header_samples */ 1 /* trailer_samples */ @@ -333,7 +333,7 @@ static const struct CassetteFormat mz700_cas_format = "m12,mzf,mzt", mz700_cas_identify, mz700_cas_load, - NULL + nullptr }; |