update CSpot + clear audio buffer when changing track

This commit is contained in:
philippe44
2022-08-23 17:06:59 -07:00
parent 36f18fc069
commit 0222dbd6de
22 changed files with 383 additions and 93 deletions

View File

@@ -67,6 +67,6 @@ long long bell::BinaryReader::readLong() {
long low = readInt();
return static_cast<long long>(
(high << 32) | low );
((long long) high << 32) | low );
}