Minor stuff

This commit is contained in:
Aurora 2016-09-08 23:21:40 +02:00
parent 64c81aa5f8
commit 2286eb21a7
2 changed files with 2 additions and 2 deletions

View File

@ -16,4 +16,4 @@ typedef struct __attribute__((packed))
u32 config;
} CFWInfo;
int svcGetCFWInfo(CFWInfo *info);
u32 svcGetCFWInfo(CFWInfo *info);

View File

@ -43,7 +43,7 @@ u32 waitInput(void)
key = HID_PAD;
//Make sure it's pressed
for(u32 i = 0x13000; i; i--)
for(u32 i = 0x13000; i > 0; i--)
{
if(key != HID_PAD) break;
if(i == 1) pressedKey = 1;