Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SNESControllersUSB/SNESControllersUSB.ino
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ void detectControllerTypes()
// Check controller types and set buttonCount to max needed
for(gp=0; gp<GAMEPAD_COUNT; gp++)
{
if((buttons[gp][0] & 0xF3A) == 0xF3A) { // NES
if((buttons[gp][0] & 0x3A) == 0x3A) { // NES
if(controllerType[gp] != SNES)
controllerType[gp] = NES;
if(buttonCountNew < 8)
Expand Down