sys: Prevent portable Windows version from writing to AppData

Fixes #627
This commit is contained in:
WerWolv
2022-08-01 14:51:08 +02:00
parent 899f2b3fbd
commit b8c034f8c5
5 changed files with 38 additions and 9 deletions

View File

@@ -354,6 +354,11 @@ namespace hex {
s_gpuVendor = vendor;
}
static bool s_portableVersion = false;
void setPortableVersion(bool enabled) {
s_portableVersion = enabled;
}
}
@@ -451,6 +456,10 @@ namespace hex {
const std::string &getGPUVendor() {
return impl::s_gpuVendor;
}
bool isPortableVersion() {
return impl::s_portableVersion;
}
}
}