hid/hdls: Use HiddbgNpadButton.

This commit is contained in:
yellows8 2020-12-08 15:39:02 -05:00
parent b924d358ec
commit a5f53afed0
No known key found for this signature in database
GPG Key ID: 0AF90DA3F1E60E43

View File

@ -94,10 +94,10 @@ int main(int argc, char* argv[])
state.buttons = 0;
if (padGetButtons(&pad) & HidNpadButton_R)
state.buttons |= KEY_HOME;
state.buttons |= HiddbgNpadButton_Home;
if (padGetButtons(&pad) & HidNpadButton_L)
state.buttons |= KEY_CAPTURE;
state.buttons |= HiddbgNpadButton_Capture;
if (padGetButtons(&pad) & HidNpadButton_Up)
state.buttons |= HidNpadButton_ZR;