mirror of
https://github.com/retro100/dosbox-wii.git
synced 2024-11-16 15:19:15 +01:00
tidy up code, bump version
This commit is contained in:
parent
220ffff508
commit
d4f4b6ce52
@ -1,4 +1,4 @@
|
||||
#define VERSION "0.73.01"
|
||||
#define VERSION "0.73.02"
|
||||
|
||||
/* Define to 1 to enable internal debugger, requires libcurses */
|
||||
#define C_DEBUG 0
|
||||
|
@ -12,7 +12,8 @@
|
||||
|
||||
char appPath[1024];
|
||||
|
||||
void WiiInit() {
|
||||
void WiiInit()
|
||||
{
|
||||
fatInitDefault();
|
||||
appPath[0] = 0;
|
||||
}
|
||||
@ -37,20 +38,7 @@ void CreateAppPath(char origpath[])
|
||||
sprintf(appPath, "sd:/%s", &(path[pos]));
|
||||
}
|
||||
|
||||
bool WiiMessagePause(const char *s) {
|
||||
if (s) printf(s);
|
||||
#ifdef HW_RVL
|
||||
while (1) {
|
||||
WPAD_ScanPads();
|
||||
u16 buttonsDown = WPAD_ButtonsDown(0);
|
||||
if( buttonsDown & WPAD_BUTTON_A ) return false;
|
||||
if( buttonsDown & WPAD_BUTTON_HOME ) return true;
|
||||
}
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
void WiiFinished() {
|
||||
void WiiFinished()
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -5,7 +5,6 @@
|
||||
void WiiInit();
|
||||
void CreateAppPath(char origpath[]);
|
||||
void WiiFinished();
|
||||
bool WiiMessagePause(const char *s);
|
||||
|
||||
extern char appPath[1024];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user