Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Linux] Remove Resizable BAR toggle #1921

Merged
merged 1 commit into from
Oct 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/backend/game_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,6 @@ class GameConfigV0 extends GameConfig {
enableFSR,
enableFsync,
maxSharpness,
enableResizableBar,
launcherArgs,
nvidiaPrime,
offlineMode,
Expand Down Expand Up @@ -239,7 +238,6 @@ class GameConfigV0 extends GameConfig {
enableFSR,
enableFsync,
maxSharpness,
enableResizableBar,
launcherArgs,
nvidiaPrime,
offlineMode,
Expand Down
3 changes: 0 additions & 3 deletions src/backend/launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,6 @@ function setupWineEnvVars(gameSettings: GameSettings, gameId = '0') {
if (!gameSettings.enableFsync && wineVersion.type === 'proton') {
ret.PROTON_NO_FSYNC = '1'
}
if (gameSettings.enableResizableBar) {
ret.VKD3D_CONFIG = 'upload_hvv'
}
if (gameSettings.eacRuntime) {
ret.PROTON_EAC_RUNTIME = join(runtimePath, 'eac_runtime')
}
Expand Down
2 changes: 0 additions & 2 deletions src/common/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ export interface AppSettings {
enableEsync: boolean
enableFSR: boolean
enableFsync: boolean
enableResizableBar: boolean
language: string
launcherArgs: string
maxRecentGames: number
Expand Down Expand Up @@ -145,7 +144,6 @@ export interface GameSettings {
enableEsync: boolean
enableFSR: boolean
enableFsync: boolean
enableResizableBar: boolean
maxSharpness: number
language: string
launcherArgs: string
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import React, { useContext } from 'react'
import WinePrefix from './WinePrefix'
import PreferSystemLibs from './PreferSystemLibs'
import EnableFSR from './EnableFSR'
import ResizableBar from './ResizableBar'
import EnableEsync from './EnableEsync'
import EnableFsync from './EnableFsync'
import CrossoverBottle from './CrossoverBottle'
Expand Down Expand Up @@ -40,8 +39,6 @@ export default function WineSettings() {

<EnableFSR />

<ResizableBar />

<EnableEsync />

<EnableFsync />
Expand Down