Fix builds on platforms that may have gotten broken due to my vmdir changes.

This commit is contained in:
asvitkine 2009-09-21 03:34:14 +00:00
parent c294074fa7
commit 3856561935
6 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -271,7 +271,7 @@ void BasiliskII::StartEmulator(void)
}
// Initialize everything
if (!InitAll()) {
if (!InitAll(NULL)) {
PostMessage(B_QUIT_REQUESTED);
return;
}

View File

@ -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"));

View File

@ -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) {

View File

@ -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;
}

View File

@ -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"));