mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-10-31 22:55:09 +01:00
minor code cleanup
This commit is contained in:
parent
6f4d4d5269
commit
db4c3b4e55
@ -92,6 +92,7 @@ loaderPrompt()
|
||||
}
|
||||
#endif
|
||||
bool have_segui;
|
||||
have_segui = false;
|
||||
if( ! seguicheck )
|
||||
{
|
||||
seguicheck = 1;
|
||||
|
@ -30,7 +30,9 @@
|
||||
|
||||
static const DISC_INTERFACE* sd = &__io_wiisd;
|
||||
static const DISC_INTERFACE* usb = &__io_usbstorage;
|
||||
#ifndef VWII
|
||||
static const DISC_INTERFACE* dvd = &__io_wiidvd;
|
||||
#endif
|
||||
|
||||
enum
|
||||
{
|
||||
@ -533,7 +535,6 @@ static bool MountPartitions(int device)
|
||||
case DEVICE_USB:
|
||||
disc = usb;
|
||||
break;
|
||||
break;
|
||||
default:
|
||||
return false; // unknown device
|
||||
}
|
||||
|
@ -1,3 +1,6 @@
|
||||
#ifndef VWII
|
||||
#ifndef NO_DEBUG
|
||||
|
||||
#include <gccore.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
@ -8,8 +11,6 @@
|
||||
/* init-globals */
|
||||
static bool geckoinit = false;
|
||||
|
||||
#ifndef VWII
|
||||
#ifndef NO_DEBUG
|
||||
#include <stdarg.h>
|
||||
|
||||
void gprintf(const char *format, ...)
|
||||
|
Loading…
Reference in New Issue
Block a user