mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-14 01:15:38 -04:00
Added back frequency display for CTCSS
Attempted to fix replay, just fixed StreamBuffer read() and added waterfall display... Updated binary
This commit is contained in:
parent
d77337dd77
commit
3221992ad1
18 changed files with 133 additions and 54 deletions
|
@ -541,7 +541,7 @@ public:
|
|||
|
||||
size_t read(void* p, const size_t count) {
|
||||
const auto copy_size = std::min(used_, count);
|
||||
memcpy(p, &data_[used_ - copy_size], copy_size);
|
||||
memcpy(p, &data_[capacity_ - used_], copy_size);
|
||||
used_ -= copy_size;
|
||||
return copy_size;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue