Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Removed junk notes from the bottom
  • Loading branch information
simons-public committed Sep 25, 2018
1 parent 7a43ca8 commit d3d24b6
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,33 +26,3 @@ Game fixes written in python and are named by the Steam game ID with the extensi
- Use docstrings and comment thoroughly. There will likely be people without python experience making game fixes and good commented examples will help
- Do not use any hard-coded paths, Steam may not always be installed in the same location.
- Check your gamefix with pylint. You can safely disable warning C0103, modules named by Steam ID will never conform to snake_case naming style.

## Enviornment Variables

From https://github.com/ValveSoftware/Proton

PROTON_LOG 1 or 0
PROTON_DUMP_DEBUG_COMMANDS 1 or 0
PROTON_DEBUG_DIR 1 or 0
PROTON_USE_WINE3D11 1 0r 0
PROTON_NO_D3D11 1 or 0
PROTON_NO_ESYNC 1 or 0

user_settings = {
#logs are saved to $HOME/steam-$STEAM_APP_ID.log, overwriting any previous log with that name
"WINEDEBUG": "+timestamp,+pid,+tid,+seh,+debugstr,+module",

"DXVK_LOG_LEVEL": "info",

#Enable DXVK's HUD
"DXVK_HUD": "devinfo,fps",

#Use wined3d for d3d11 instead of dxvk
#"PROTON_USE_WINED3D11": "1",

#Disable d3d11 entirely
# "PROTON_NO_D3D11": "1",

#Disable in-process synchronization primitives
"PROTON_NO_ESYNC": "1",
}

0 comments on commit d3d24b6

Please sign in to comment.