diff options
Diffstat (limited to 'source/nds')
-rw-r--r-- | source/nds/entry.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source/nds/entry.cpp b/source/nds/entry.cpp index 9928985..5573f47 100644 --- a/source/nds/entry.cpp +++ b/source/nds/entry.cpp @@ -1001,8 +1001,7 @@ unsigned int S9xReadJoypad (int which1) key |= (inputdata.key & (1<<i)) ? keymap[i] : 0; } - // return (key | 0x80000000); - return key; // ??? [Neb] + return (key | 0x80000000); } else return 0; |