diff options
Diffstat (limited to 'alc/alc.cpp')
-rw-r--r-- | alc/alc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp index 9ce1fa65..1608cac6 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -2085,7 +2085,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) case DevFmtX71: if(GetConfigValueBool(device->DeviceName.c_str(), nullptr, "front-stablizer", 0)) { - auto stablizer = al::make_unique<FrontStablizer>(); + auto stablizer = std::make_unique<FrontStablizer>(); /* Initialize band-splitting filters for the front-left and front- * right channels, with a crossover at 5khz (could be higher). */ |