- Fixed configs reading for controllers with default values

- fixed the app for japanese WiiUs
This commit is contained in:
Maschell 2017-03-31 16:54:16 +02:00
parent e2b5a610a1
commit 4e0e174b51
5 changed files with 9 additions and 6 deletions

5
.gitignore vendored
View File

@ -47,4 +47,7 @@ Temporary Items
.apdisk
/build/*
hidtopad.cbp
hidtopad.cbp
wiiu/*
hidtovpad.elf
hidtovpad_dbg.elf

View File

@ -2,8 +2,8 @@
<app version="1">
<name>HID to VPAD</name>
<coder>Maschell</coder>
<version>0.9f</version>
<release_date>20170330200000</release_date>
<version>0.9g</version>
<release_date>20170331164900</release_date>
<short_description>USB HID to gamepad input</short_description>
<long_description>Emulate input using various USB HID devices.</long_description>
</app>

@ -1 +1 @@
Subproject commit 1c3935dd93ee66892122c5a7d454963c51f43d92
Subproject commit e3af97b932405ce6861591e5d6af630bc8a501aa

View File

@ -129,7 +129,7 @@ int isInMiiMakerHBL(){
if (OSGetTitleID != 0 && (
OSGetTitleID() == 0x000500101004A200 || // mii maker eur
OSGetTitleID() == 0x000500101004A100 || // mii maker usa
OSGetTitleID() == 0x000500101004A100 ||// mii maker jpn
OSGetTitleID() == 0x000500101004A000 ||// mii maker jpn
OSGetTitleID() == 0x0005000013374842))
{
return 1;

View File

@ -1,5 +1,5 @@
#define MAJOR_VERION "0"
#define MINOR_VERSION "9"
#define EXTRA_VERSION "f"
#define EXTRA_VERSION "g"
#define APP_VERION "v" MAJOR_VERION "." MINOR_VERSION EXTRA_VERSION