mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-14 12:09:36 +00:00
More work. Audio driver works enough to play music now.
This commit is contained in:
@@ -18,7 +18,7 @@ namespace PortabilityLayer
|
||||
static const int kN = 624;
|
||||
static const int kM = 397;
|
||||
static const int kR = 31;
|
||||
static const uint32_t kLowMask = (1 << kR) - 1;
|
||||
static const uint32_t kLowMask = (static_cast<uint32_t>(1) << kR) - 1;
|
||||
static const uint32_t kHighMask = ~kLowMask;
|
||||
|
||||
void Twist();
|
||||
|
||||
Reference in New Issue
Block a user