Skip to content

Commit

Permalink
DS3 pad handler
Browse files Browse the repository at this point in the history
  • Loading branch information
RipleyTom committed Mar 17, 2019
1 parent dfcab4c commit 3587150
Show file tree
Hide file tree
Showing 8 changed files with 662 additions and 3 deletions.
1 change: 1 addition & 0 deletions rpcs3/Emu/System.cpp
Expand Up @@ -100,6 +100,7 @@ void fmt_class_string<pad_handler>::format(std::string& out, u64 arg)
{
case pad_handler::null: return "Null";
case pad_handler::keyboard: return "Keyboard";
case pad_handler::ds3: return "DualShock 3";
case pad_handler::ds4: return "DualShock 4";
#ifdef _WIN32
case pad_handler::xinput: return "XInput";
Expand Down
1 change: 1 addition & 0 deletions rpcs3/Emu/System.h
Expand Up @@ -63,6 +63,7 @@ enum class pad_handler
{
null,
keyboard,
ds3,
ds4,
#ifdef _WIN32
xinput,
Expand Down

0 comments on commit 3587150

Please sign in to comment.