spu: remove all threading code
[pcsx_rearmed.git] / frontend / main.c
index 4ebcf34..e072cde 100644 (file)
@@ -38,7 +38,6 @@ extern int iUseReverb;
 extern int iUseInterpolation;
 extern int iXAPitch;
 extern int iSPUIRQWait;
-extern int iUseTimer;
 extern int iVolume;
 
 int ready_to_go;
@@ -131,7 +130,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);
@@ -159,7 +158,6 @@ void emu_set_default_config(void)
        iUseInterpolation = 1;
        iXAPitch = 0;
        iSPUIRQWait = 1;
-       iUseTimer = 2;
        iVolume = 768;
 #ifndef __ARM_ARCH_7A__ /* XXX */
        iUseReverb = 0;
@@ -732,7 +730,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