aboutsummaryrefslogtreecommitdiffstats
path: root/alc
diff options
context:
space:
mode:
authorMax Bachmann <[email protected]>2023-07-26 21:57:53 +0200
committerGitHub <[email protected]>2023-07-26 19:57:53 +0000
commit34d07fde84ad64342ae6624334957143319615ab (patch)
tree73f003626c538b2682b885560de1a42e9f576311 /alc
parent8b3a9b527d87009f86ed0b4eb6c33a9e8dfc069b (diff)
disable unavailable functionality on xbox (#887)
* disable unavailable functionality on xbox * use not std version of getenv on xbox
Diffstat (limited to 'alc')
-rw-r--r--alc/alconfig.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/alc/alconfig.cpp b/alc/alconfig.cpp
index 3c9a9777..03139abe 100644
--- a/alc/alconfig.cpp
+++ b/alc/alconfig.cpp
@@ -329,6 +329,7 @@ const char *GetConfigValue(const char *devName, const char *blockName, const cha
#ifdef _WIN32
void ReadALConfig()
{
+#if !defined(_GAMING_XBOX)
{
#if !defined(ALSOFT_UWP)
WCHAR buffer[MAX_PATH];
@@ -345,6 +346,7 @@ void ReadALConfig()
if(f.is_open())
LoadConfigFromFile(f);
}
+#endif
std::string ppath{GetProcBinary().path};