mirror of
https://github.com/Maschell/hid_to_vpad.git
synced 2024-11-22 06:29:15 +01:00
- Fixed configs reading for controllers with default values
- fixed the app for japanese WiiUs
This commit is contained in:
parent
e2b5a610a1
commit
4e0e174b51
5
.gitignore
vendored
5
.gitignore
vendored
@ -47,4 +47,7 @@ Temporary Items
|
|||||||
.apdisk
|
.apdisk
|
||||||
|
|
||||||
/build/*
|
/build/*
|
||||||
hidtopad.cbp
|
hidtopad.cbp
|
||||||
|
wiiu/*
|
||||||
|
hidtovpad.elf
|
||||||
|
hidtovpad_dbg.elf
|
@ -2,8 +2,8 @@
|
|||||||
<app version="1">
|
<app version="1">
|
||||||
<name>HID to VPAD</name>
|
<name>HID to VPAD</name>
|
||||||
<coder>Maschell</coder>
|
<coder>Maschell</coder>
|
||||||
<version>0.9f</version>
|
<version>0.9g</version>
|
||||||
<release_date>20170330200000</release_date>
|
<release_date>20170331164900</release_date>
|
||||||
<short_description>USB HID to gamepad input</short_description>
|
<short_description>USB HID to gamepad input</short_description>
|
||||||
<long_description>Emulate input using various USB HID devices.</long_description>
|
<long_description>Emulate input using various USB HID devices.</long_description>
|
||||||
</app>
|
</app>
|
@ -1 +1 @@
|
|||||||
Subproject commit 1c3935dd93ee66892122c5a7d454963c51f43d92
|
Subproject commit e3af97b932405ce6861591e5d6af630bc8a501aa
|
@ -129,7 +129,7 @@ int isInMiiMakerHBL(){
|
|||||||
if (OSGetTitleID != 0 && (
|
if (OSGetTitleID != 0 && (
|
||||||
OSGetTitleID() == 0x000500101004A200 || // mii maker eur
|
OSGetTitleID() == 0x000500101004A200 || // mii maker eur
|
||||||
OSGetTitleID() == 0x000500101004A100 || // mii maker usa
|
OSGetTitleID() == 0x000500101004A100 || // mii maker usa
|
||||||
OSGetTitleID() == 0x000500101004A100 ||// mii maker jpn
|
OSGetTitleID() == 0x000500101004A000 ||// mii maker jpn
|
||||||
OSGetTitleID() == 0x0005000013374842))
|
OSGetTitleID() == 0x0005000013374842))
|
||||||
{
|
{
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#define MAJOR_VERION "0"
|
#define MAJOR_VERION "0"
|
||||||
#define MINOR_VERSION "9"
|
#define MINOR_VERSION "9"
|
||||||
#define EXTRA_VERSION "f"
|
#define EXTRA_VERSION "g"
|
||||||
#define APP_VERION "v" MAJOR_VERION "." MINOR_VERSION EXTRA_VERSION
|
#define APP_VERION "v" MAJOR_VERION "." MINOR_VERSION EXTRA_VERSION
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user