diff options
author | Chris Robinson <[email protected]> | 2021-04-24 11:50:49 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-04-24 11:50:49 -0700 |
commit | fc7d55be4b468c14c2f99d112a56b6c831c7244b (patch) | |
tree | eb7af05d004b76872c49546188a9fa31c4f7d013 /alc/alc.cpp | |
parent | e0e4a8c35d41a4b087a1afbebd38960c96398b7f (diff) |
Don't bother with al string types
Diffstat (limited to 'alc/alc.cpp')
-rw-r--r-- | alc/alc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp index 87c8bbf4..bd637f8a 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -856,8 +856,8 @@ std::string alcAllDevicesList; std::string alcCaptureDeviceList; /* Default is always the first in the list */ -al::string alcDefaultAllDevicesSpecifier; -al::string alcCaptureDefaultDeviceSpecifier; +std::string alcDefaultAllDevicesSpecifier; +std::string alcCaptureDefaultDeviceSpecifier; /* Default context extensions */ constexpr ALchar alExtList[] = @@ -1028,7 +1028,7 @@ void alc_initconfig(void) TRACE("Initializing library v%s-%s %s\n", ALSOFT_VERSION, ALSOFT_GIT_COMMIT_HASH, ALSOFT_GIT_BRANCH); { - al::string names; + std::string names; if(al::size(BackendList) < 1) names = "(none)"; else |