We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 15115ae + 883b9b1 commit 9eed4ebCopy full SHA for 9eed4eb
app/src/main/java/com/OxGames/Pluvia/ui/screen/xserver/XServerViewModel.kt
@@ -336,11 +336,13 @@ class XServerViewModel @Inject constructor(
336
guestProgramLauncherComponent.isWoW64Mode = wow64Mode
337
guestProgramLauncherComponent.guestExecutable = guestExecutable
338
339
- envVars.putAll(container.envVars)
340
- if (!envVars.has("WINEESYNC")) {
341
- envVars.put("WINEESYNC", "1")
+ if (container.isShowFPS) {
+ envVars.put("GALLIUM_HUD", "simple,fps")
+ envVars.put("DXVK_HUD", "fps")
342
}
343
344
+ envVars.putAll(container.envVars)
345
+
346
// Timber.d("3 Container drives: ${container.drives}")
347
val bindingPaths = mutableListOf<String>()
348
for (drive in container.drivesIterator()) {
0 commit comments