diff options
Diffstat (limited to 'plugins/gxvideo')
| -rw-r--r-- | plugins/gxvideo/Makefile.am | 6 | ||||
| -rw-r--r-- | plugins/gxvideo/cfg.c | 6 | ||||
| -rw-r--r-- | plugins/gxvideo/gpu.c | 4 | ||||
| -rw-r--r-- | plugins/gxvideo/gpucfg/main.c | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/plugins/gxvideo/Makefile.am b/plugins/gxvideo/Makefile.am index 0f6499c1..9f753f91 100644 --- a/plugins/gxvideo/Makefile.am +++ b/plugins/gxvideo/Makefile.am @@ -16,15 +16,15 @@ bindir = @libdir@/games/psemu/ libdir = @libdir@/games/psemu/ noinst_LTLIBRARIES = libcfg.la libglobals.la -libcfg_la_SOURCES = cfg.c +libcfg_la_SOURCES = cfg.c cfg.h globals.h libglobals_la_SOURCES = globals.c lib_LTLIBRARIES = libGXVideo.la -libGXVideo_la_SOURCES = gpu.c draw.c fps.c key.c menu.c prim.c soft.c +libGXVideo_la_SOURCES = gpu.c gpu.h draw.c draw.h fps.c fps.h key.c key.h menu.c menu.h prim.c prim.h soft.c soft.h gpu_utils.h interp.h swap.h if X86_NASM -libGXVideo_la_SOURCES += i386.asm +libGXVideo_la_SOURCES += i386.asm macros.inc AM_CPPFLAGS += -DUSE_NASM=1 endif libGXVideo_la_LDFLAGS = -module -avoid-version 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
diff --git a/plugins/gxvideo/gpu.c b/plugins/gxvideo/gpu.c index 22544950..853c7da3 100644 --- a/plugins/gxvideo/gpu.c +++ b/plugins/gxvideo/gpu.c @@ -217,9 +217,9 @@ void CALLBACK GPUmakeSnapshot(void) { // do {
// snapshotnr++;
//#ifdef _WINDOWS
- // sprintf(filename,"snap\\pcsx%04ld.bmp",snapshotnr);
+ // sprintf(filename,"snap\\pcsxr%04ld.bmp",snapshotnr);
//#else
- // sprintf(filename, "%s/pcsx%04ld.bmp", getenv("HOME"), snapshotnr);
+ // sprintf(filename, "%s/pcsxr%04ld.bmp", getenv("HOME"), snapshotnr);
//#endif
//
// bmpfile = fopen(filename, "rb");
diff --git a/plugins/gxvideo/gpucfg/main.c b/plugins/gxvideo/gpucfg/main.c index 64691e56..d3d4f93d 100644 --- a/plugins/gxvideo/gpucfg/main.c +++ b/plugins/gxvideo/gpucfg/main.c @@ -165,7 +165,7 @@ int main(int argc, char *argv[]) { "Ryan Schultz", "Andrew Burton", NULL };
widget = gtk_about_dialog_new();
gtk_about_dialog_set_name(GTK_ABOUT_DIALOG (widget),
- "P.E.Op.S PCSX Video Plugin");
+ "P.E.Op.S PCSXR Video Plugin");
gtk_about_dialog_set_version(GTK_ABOUT_DIALOG (widget), "1.17");
gtk_about_dialog_set_authors(GTK_ABOUT_DIALOG (widget), authors);
gtk_about_dialog_set_website(GTK_ABOUT_DIALOG (widget),
|
