X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmain.c;h=d6f4cd19f72b05eba31e3bcce157606645a9559b;hp=4ebcf34568a2586b6578d1b61d91be8a2e39c2a3;hb=f2aec10aa8e3befe7e89070e8559d070835cc23e;hpb=ac6575cdd93d665efc374c1a14b391c6a5308972 diff --git a/frontend/main.c b/frontend/main.c index 4ebcf345..d6f4cd19 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -37,8 +37,6 @@ void StopDebugger(); extern int iUseReverb; extern int iUseInterpolation; extern int iXAPitch; -extern int iSPUIRQWait; -extern int iUseTimer; extern int iVolume; int ready_to_go; @@ -131,7 +129,7 @@ static void set_default_paths(void) strcpy(Config.Pad2, "builtin_pad"); strcpy(Config.Net, "Disabled"); #if defined(__arm__) && !defined(__ARM_ARCH_7A__) /* XXX */ - strcpy(Config.Gpu, "gpuPCSX4ALL.so"); + strcpy(Config.Gpu, "gpu_unai.so"); #endif snprintf(Config.PatchesDir, sizeof(Config.PatchesDir), "." PATCHES_DIR); @@ -158,8 +156,6 @@ void emu_set_default_config(void) iUseReverb = 2; iUseInterpolation = 1; iXAPitch = 0; - iSPUIRQWait = 1; - iUseTimer = 2; iVolume = 768; #ifndef __ARM_ARCH_7A__ /* XXX */ iUseReverb = 0; @@ -732,7 +728,7 @@ void *SysLoadLibrary(const char *lib) { // convenience hack if (strstr(lib, ".x86") == NULL) { char name[MAXPATHLEN]; - snprintf(name, sizeof(name), "%s.x86", lib); + snprintf(name, sizeof(name), "%s.x86_64", lib); lib = name; } #endif