mirror of https://github.com/PCSX2/pcsx2.git
USB: Freeze mode enum for keyboardmania
This commit is contained in:
parent
3ba2ae0275
commit
9bdf6675fc
|
@ -838,7 +838,7 @@ namespace usb_pad
|
||||||
return RESULT_CANCELED;
|
return RESULT_CANCELED;
|
||||||
}
|
}
|
||||||
|
|
||||||
int KeyboardmaniaDevice::Freeze(int mode, USBDevice* dev, void* data)
|
int KeyboardmaniaDevice::Freeze(FreezeAction mode, USBDevice* dev, void* data)
|
||||||
{
|
{
|
||||||
return PadDevice::Freeze(mode, dev, data);
|
return PadDevice::Freeze(mode, dev, data);
|
||||||
}
|
}
|
||||||
|
|
|
@ -150,7 +150,7 @@ namespace usb_pad
|
||||||
static std::list<std::string> ListAPIs();
|
static std::list<std::string> ListAPIs();
|
||||||
static const TCHAR* LongAPIName(const std::string& name);
|
static const TCHAR* LongAPIName(const std::string& name);
|
||||||
static int Configure(int port, const std::string& api, void* data);
|
static int Configure(int port, const std::string& api, void* data);
|
||||||
static int Freeze(int mode, USBDevice* dev, void* data);
|
static int Freeze(FreezeAction mode, USBDevice* dev, void* data);
|
||||||
static std::vector<std::string> SubTypes()
|
static std::vector<std::string> SubTypes()
|
||||||
{
|
{
|
||||||
return {};
|
return {};
|
||||||
|
|
Loading…
Reference in New Issue