From 5f868fa161d5827e45a060a0b17b44a997625315 Mon Sep 17 00:00:00 2001 From: "SND\\edgbla_cp" Date: Wed, 8 Jun 2011 09:27:25 +0000 Subject: Rebranding. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@67621 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- plugins/gxvideo/cfg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/gxvideo/cfg.c') diff --git a/plugins/gxvideo/cfg.c b/plugins/gxvideo/cfg.c index 7b18327a..b64bd99d 100644 --- a/plugins/gxvideo/cfg.c +++ b/plugins/gxvideo/cfg.c @@ -78,7 +78,7 @@ void ReadConfigFile() { strcpy(cfg_file_name, "cfg/" DEFAULT_CFG_NAME); f_in = fopen(cfg_file_name, "rb"); if (!f_in) - snprintf(cfg_file_name, 255, "%s/.pcsx/plugins/" DEFAULT_CFG_NAME, getenv("HOME")); + snprintf(cfg_file_name, 255, "%s/.pcsxr/plugins/" DEFAULT_CFG_NAME, getenv("HOME")); else fclose(f_in); } else @@ -175,7 +175,7 @@ void ExecCfg(char const * arg) { return; } - sprintf(cfg, "%s/.pcsx/plugins/cfg/cfgGXVideo", getenv("HOME")); + sprintf(cfg, "%s/.pcsxr/plugins/cfg/cfgGXVideo", getenv("HOME")); if (stat(cfg, &buf) != -1) { if (fork() == 0) { execl(cfg, "cfgGXVideo", arg, NULL); @@ -230,7 +230,7 @@ void WriteConfig(void) { strcpy(cfg_file_name, "cfg/" DEFAULT_CFG_NAME); f_out = fopen(cfg_file_name, "rb"); if (!f_out) - snprintf(cfg_file_name, 255, "%s/.pcsx/plugins/" DEFAULT_CFG_NAME, getenv("HOME")); + snprintf(cfg_file_name, 255, "%s/.pcsxr/plugins/" DEFAULT_CFG_NAME, getenv("HOME")); else fclose(f_out); } else -- cgit v1.2.3