mirror of https://github.com/mgba-emu/mgba.git
Wii: Add argv loading
This commit is contained in:
parent
f5d6d6fbc9
commit
1f76168317
|
@ -131,7 +131,7 @@ static void reconfigureScreen(GXRModeObj* vmode) {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
int main() {
|
int main(int argc, char* argv[]) {
|
||||||
VIDEO_Init();
|
VIDEO_Init();
|
||||||
PAD_Init();
|
PAD_Init();
|
||||||
WPAD_Init();
|
WPAD_Init();
|
||||||
|
@ -358,7 +358,11 @@ int main() {
|
||||||
.pollGameInput = _pollGameInput
|
.pollGameInput = _pollGameInput
|
||||||
};
|
};
|
||||||
GBAGUIInit(&runner, "wii");
|
GBAGUIInit(&runner, "wii");
|
||||||
GBAGUIRunloop(&runner);
|
if (argc > 1) {
|
||||||
|
GBAGUIRun(&runner, argv[1]);
|
||||||
|
} else {
|
||||||
|
GBAGUIRunloop(&runner);
|
||||||
|
}
|
||||||
GBAGUIDeinit(&runner);
|
GBAGUIDeinit(&runner);
|
||||||
|
|
||||||
free(fifo);
|
free(fifo);
|
||||||
|
|
Loading…
Reference in New Issue