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.
17 lines
348 B
17 lines
348 B
#pragma once |
|
|
|
#include <SDL_version.h> |
|
|
|
#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 |
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 7) && defined(DEVILUTIONX_RESAMPLER_SDL) |
|
#define DVL_AULIB_SUPPORTS_SDL_RESAMPLER |
|
#endif
|
|
|