-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable windowed mode and raw input to get all inputs on virtual display
This fixes an issue where the game does not receive most of the inputs sent to the virtual display. It is not really clear why this change is necessary, something related to the game or the X server must have changed recently... Note: Fixed some formatting along the way.
- Loading branch information
Showing
3 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
# Essential startup arguments | ||
ESSENTIAL_ARGS = ( | ||
'-insecure', '-untrusted', '-novid', '-nojoy', '+cl_use_opens_buy_menu', '0' | ||
'-insecure', | ||
'-untrusted', | ||
'-novid', | ||
'-nojoy', | ||
'-windowed', '-noborder', | ||
'+cl_use_opens_buy_menu', '0', | ||
'+m_rawinput', '1' | ||
) |