fixed compilation problems under BeOS/x86

This commit is contained in:
cebix 2001-04-10 11:05:13 +00:00
parent ebb5be06cf
commit 017fc451b7
2 changed files with 4 additions and 2 deletions

View File

@ -33,7 +33,7 @@ TYPE= APP
MACHINE=$(shell uname -m)
ifeq ($(MACHINE), BePC)
CPUSRCS = ../uae_cpu/basilisk_glue.cpp ../uae_cpu/memory.cpp ../uae_cpu/newcpu.cpp \
../uae_cpu/readcpu.cpp ../uae_cpu/fpu_x86.cpp cpustbl.cpp cpudefs.cpp cpufast.s
../uae_cpu/readcpu.cpp ../uae_cpu/fpu/fpu_x86.cpp cpustbl.cpp cpudefs.cpp cpufast.s
else
# CPUSRCS = ../powerrom_cpu/powerrom_cpu.cpp
CPUSRCS = ../uae_cpu/basilisk_glue.cpp ../uae_cpu/newcpu.cpp \

View File

@ -176,7 +176,9 @@ void BasiliskII::ReadyToRun(void)
delete_area(old_rom_area);
// Read preferences
PrefsInit(0, NULL);
int argc = 0;
char **argv = NULL;
PrefsInit(argc, argv);
// Init system routines
SysInit();