try make work on steamos

This commit is contained in:
2025-03-15 22:50:56 +01:00
parent 411acb24f2
commit 9ecdca8d27
2 changed files with 7 additions and 1 deletions

View File

@@ -9,3 +9,7 @@ TB needs to now about our custom entites, so we need to map a [games folder](htt
TB needs to now where to find the games files. TB needs to now where to find the games files.
Go to `Preferences`, select `HEDZ` in the list and choose repo folder. Go to `Preferences`, select `HEDZ` in the list and choose repo folder.
## Steamdeck MacOs
ssh on device: `ssh -o StrictHostKeyChecking=no -i "/Users/stephan/Library/Application Support/steamos-devkit/devkit_rsa" deck@192.168.2.39`

View File

@@ -174,7 +174,9 @@ fn music(asset_server: Res<AssetServer>, mut commands: Commands) {
} }
fn write_trenchbroom_config(server: Res<TrenchBroomServer>) { fn write_trenchbroom_config(server: Res<TrenchBroomServer>) {
server.config.write_folder("trenchbroom/hedz").unwrap() if let Err(e) = server.config.write_folder("trenchbroom/hedz") {
error!("Failed to write trenchbroom config: {}", e);
}
} }
fn set_tonemapping( fn set_tonemapping(