mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-01-11 10:30:09 +00:00
Fix builds on platforms that may have gotten broken due to my vmdir changes.
This commit is contained in:
parent
c294074fa7
commit
3856561935
@ -311,7 +311,7 @@ int main(int argc, char **argv)
|
||||
FPUType = attn & AFF_68881 ? 1 : 0;
|
||||
|
||||
// Initialize everything
|
||||
if (!InitAll())
|
||||
if (!InitAll(NULL))
|
||||
QuitEmulator();
|
||||
|
||||
// Move VBR away from 0 if neccessary
|
||||
|
@ -271,7 +271,7 @@ void BasiliskII::StartEmulator(void)
|
||||
}
|
||||
|
||||
// Initialize everything
|
||||
if (!InitAll()) {
|
||||
if (!InitAll(NULL)) {
|
||||
PostMessage(B_QUIT_REQUESTED);
|
||||
return;
|
||||
}
|
||||
|
@ -411,7 +411,7 @@ int main(int argc, char **argv)
|
||||
timer_init();
|
||||
|
||||
// Initialize everything
|
||||
if (!InitAll())
|
||||
if (!InitAll(NULL))
|
||||
QuitEmulator();
|
||||
D(bug("Initialization complete\n"));
|
||||
|
||||
|
@ -34,7 +34,7 @@ const char XPRAM_FILE_NAME[] = "BasiliskII_XPRAM";
|
||||
* Load XPRAM from settings file
|
||||
*/
|
||||
|
||||
void LoadXPRAM(void)
|
||||
void LoadXPRAM(const char *vmdir)
|
||||
{
|
||||
FILE *f = fopen(XPRAM_FILE_NAME, "rb");
|
||||
if (f != NULL) {
|
||||
|
@ -474,7 +474,7 @@ void SheepShaver::StartEmulator(void)
|
||||
D(bug("DR Emulator area %ld at %p\n", dr_emulator_area, DREmulatorAddr));
|
||||
|
||||
// Initialize everything
|
||||
if (!InitAll()) {
|
||||
if (!InitAll(NULL)) {
|
||||
PostMessage(B_QUIT_REQUESTED);
|
||||
return;
|
||||
}
|
||||
|
@ -364,7 +364,7 @@ int main(int argc, char **argv)
|
||||
timer_init();
|
||||
|
||||
// Initialize everything
|
||||
if (!InitAll())
|
||||
if (!InitAll(NULL))
|
||||
goto quit;
|
||||
D(bug("Initialization complete\n"));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user