mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
Fixed online gaming. Removed some warnings when compiling with R19
This commit is contained in:
parent
5d19915af8
commit
dc34b25542
@ -1014,7 +1014,7 @@ class GuiNumpad : public GuiWindow
|
||||
char kbtextstr[256];
|
||||
protected:
|
||||
u32 kbtextmaxlen;
|
||||
char keys[10];
|
||||
char keys[11];
|
||||
GuiText * kbText;
|
||||
GuiImage * keyTextboxImg;
|
||||
|
||||
@ -1026,10 +1026,10 @@ class GuiNumpad : public GuiWindow
|
||||
GuiImage * keyClearImg;
|
||||
GuiImage * keyClearOverImg;
|
||||
GuiButton * keyClear;
|
||||
GuiButton * keyBtn[10];
|
||||
GuiImage * keyImg[10];
|
||||
GuiImage * keyImgOver[10];
|
||||
GuiText * keyTxt[10];
|
||||
GuiButton * keyBtn[11];
|
||||
GuiImage * keyImg[11];
|
||||
GuiImage * keyImgOver[11];
|
||||
GuiText * keyTxt[11];
|
||||
GuiImageData * keyTextbox;
|
||||
GuiImageData * keyMedium;
|
||||
GuiImageData * keyMediumOver;
|
||||
|
@ -466,7 +466,7 @@ int MainMenu(int menu) {
|
||||
if (load_from_fs != PART_FS_WBFS && ios2 == 249) {
|
||||
ios2 = 222;
|
||||
}
|
||||
bool onlinefix = load_from_fs != PART_FS_WBFS && ShutdownWC24();
|
||||
bool onlinefix = ShutdownWC24();
|
||||
|
||||
// You cannot reload ios when loading from fat
|
||||
if (IOS_GetVersion() != ios2 || onlinefix) {
|
||||
|
@ -198,7 +198,7 @@ voidpf filestream;
|
||||
uLong *pX;
|
||||
{
|
||||
uLong x ;
|
||||
int i;
|
||||
int i = 0;
|
||||
int err;
|
||||
|
||||
err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
|
||||
@ -226,7 +226,7 @@ voidpf filestream;
|
||||
uLong *pX;
|
||||
{
|
||||
uLong x ;
|
||||
int i;
|
||||
int i = 0;
|
||||
int err;
|
||||
|
||||
err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
|
||||
|
@ -346,9 +346,7 @@ void gamepatches(void * dst, int len, u8 videoSelected, u8 patchcountrystring, u
|
||||
|
||||
NewSuperMarioBrosPatch(dst, len);
|
||||
|
||||
//gprintf("\nLoading WIP Patch...");
|
||||
u32 ret = do_wip_code((u8 *)0x80000000);
|
||||
//gprintf("done\n", ret);
|
||||
do_wip_code((u8 *)0x80000000);
|
||||
|
||||
|
||||
//if(Settings.anti002fix == on)
|
||||
|
@ -53,7 +53,7 @@ bool is_gameid(char *id)
|
||||
{
|
||||
int i;
|
||||
for (i=0; i<6; i++) {
|
||||
if (!isalnum(id[i])) return false;
|
||||
if (!isalnum((u32) id[i])) return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
@ -339,7 +339,7 @@ void mk_gameid_title(struct discHdr *header, char *name, int re_space)
|
||||
// replace silly chars with '_'
|
||||
len = strlen(name);
|
||||
for (i = 0; i < len; i++) {
|
||||
if(strchr("\\/:<>|\"", name[i]) || iscntrl(name[i])) {
|
||||
if(strchr("\\/:<>|\"", name[i]) || iscntrl((u32) name[i])) {
|
||||
name[i] = '_';
|
||||
}
|
||||
if(re_space && name[i]==' ') {
|
||||
|
Loading…
Reference in New Issue
Block a user