diff options
author | 2021-12-02 13:33:44 +0100 | |
---|---|---|
committer | 2021-12-02 13:34:15 +0100 | |
commit | 620f531c541aecfa5bade33be802d053a10d03ac (patch) | |
tree | 00406dbb05651a7a954e706857d3cf550bd31ea9 /src/lib/formats/cbm_tap.cpp | |
parent | 9f45ed5ac482abd03ccb34f51c1ff25fcd360930 (diff) |
Remove a few outdated references to MESS
Diffstat (limited to 'src/lib/formats/cbm_tap.cpp')
-rw-r--r-- | src/lib/formats/cbm_tap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/cbm_tap.cpp b/src/lib/formats/cbm_tap.cpp index 9ae77bffb7d..eeb1872f28e 100644 --- a/src/lib/formats/cbm_tap.cpp +++ b/src/lib/formats/cbm_tap.cpp @@ -136,7 +136,7 @@ static int len; /* This in fact gives the number of samples for half of the pulse */ static inline int tap_data_to_samplecount(int data, int frequency) { -// return (int) (0.5 * (0.5 + (((double)CBM_WAV_FREQUENCY / frequency) * (double)data))); // MESS TZX formula +// return (int) (0.5 * (0.5 + (((double)CBM_WAV_FREQUENCY / frequency) * (double)data))); // MAME TZX formula return (int) (0.5 * (((double)CBM_WAV_FREQUENCY / frequency) * (double)((data) + 0.5))); // tap2wav formula } |