lightrec: Set program name to /proc/self/exe on Linux
[pcsx_rearmed.git] / libpcsxcore / lightrec / plugin.c
index 200ce81..7f500fd 100644 (file)
 #      define unlikely(x)     (x)
 #endif
 
+#ifndef LIGHTREC_PROG_NAME
+#  ifdef __linux__
+#    define LIGHTREC_PROG_NAME "/proc/self/exe"
+#  else
+#    define LIGHTREC_PROG_NAME "retroarch.exe"
+#  endif
+#endif
+
 psxRegisters psxRegs;
 Rcnt rcnts[4];
 
@@ -60,8 +68,6 @@ void* code_buffer;
 
 static struct lightrec_state *lightrec_state;
 
-static char *name = "retroarch.exe";
-
 static bool use_lightrec_interpreter;
 static bool use_pcsx_interpreter;
 static bool block_stepping;
@@ -458,7 +464,7 @@ static int lightrec_plugin_init(void)
 
        use_lightrec_interpreter = !!getenv("LIGHTREC_INTERPRETER");
 
-       lightrec_state = lightrec_init(name,
+       lightrec_state = lightrec_init(LIGHTREC_PROG_NAME,
                        lightrec_map, ARRAY_SIZE(lightrec_map),
                        &lightrec_ops);