Change default controller type for player 1 to 0[build]

This commit is contained in:
Isaac0-dev 2025-12-22 13:11:31 +10:00 committed by GitHub
parent e9fd0a71d5
commit 5524ce52e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,7 +23,7 @@ struct ControllerInfo *gReadingController = NULL;
struct ControllerInfo gPlayerControllerInfos[POSSIBLE_NUM_PLAYERS] = {{
.index = 0,
.type = 1, // Make player 1 the keyboard by default
.type = 0,
.connected = true
}};