| 30 | constexpr int32_t kPanFalloffEnd = 3072; |
| 31 | |
| 32 | static int8_t getZoomVolumeModifier(uint8_t zoom) |
| 33 | { |
| 34 | return std::min<uint8_t>(zoom, 2) * kVolumeModifierZoomIncrement; |
| 35 | } |
| 36 | |
| 37 | static bool isUnderground(const World::Pos3& pos) |
| 38 | { |
no outgoing calls
no test coverage detected