You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
348 B
18 lines
348 B
|
4 years ago
|
#pragma once
|
||
|
|
|
||
|
4 years ago
|
#include <SDL_version.h>
|
||
|
|
|
||
|
4 years ago
|
#define VOLUME_MIN -1600
|
||
|
|
#define VOLUME_MAX 0
|
||
|
|
#define VOLUME_STEPS 64
|
||
|
|
|
||
|
|
#define ATTENUATION_MIN -6400
|
||
|
|
#define ATTENUATION_MAX 0
|
||
|
|
|
||
|
|
#define PAN_MIN -6400
|
||
|
|
#define PAN_MAX 6400
|
||
|
4 years ago
|
|
||
|
4 years ago
|
#if SDL_VERSION_ATLEAST(2, 0, 7) && defined(DEVILUTIONX_RESAMPLER_SDL)
|
||
|
4 years ago
|
#define DVL_AULIB_SUPPORTS_SDL_RESAMPLER
|
||
|
|
#endif
|