| * hello! i cant get Biped to run. It's a directx11 game and whenever i run it, it has this error
Switching to resolution 1920x1080 failed, trying lower one
Switching to resolution 1920x1080 failed, trying lower one
All resolution switches have failed
Screen: DX11 could not switch resolution (1920x1080 fs=1 hz=0)
these are the logs from steam when pressing launch: https://pastebin.com/KtPfYZUR and this is the biped crash log: https://pastebin.com/5AnXk5Xf
i've tried patching steam like this, but im not even sure its necessary. gvfs because logs complained about it and dxvk because directx11?:
{ pkgs, ... }:
{
programs = {
steam = {
enable = true;
gamescopeSession.enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
package = pkgs.steam.override {
extraPkgs = pkgs: with pkgs; [
dxvk
];
extraLibraries = pkgs: with pkgs; [
gvfs
];
};
};
gamemode = {
enable = true;
settings = {
general.renice = 10;
gpu = {
apply_gpu_optimisations = "accept-responsibility";
gpu_device = 0;
amd_performance_level = "auto";
};
};
};
gamescope = {
enable = true;
capSysNice = true;
};
};
}
all the other games i tested work. i would really appreciate some help
|