diff options
| author | Stelios Tsampas <loathingkernel@gmail.com> | 2017-07-10 16:14:43 +0300 |
|---|---|---|
| committer | Stelios Tsampas <loathingkernel@gmail.com> | 2017-07-16 21:20:53 +0300 |
| commit | d880179b2a3aacae96bb4771a3c9e227ca6d5818 (patch) | |
| tree | 96730dce1e5afeef992abc6ae6884577c8ebf53c /plugins | |
| parent | 496df34ee4e3861c6e9b0ee8256d575622447563 (diff) | |
| download | pcsxr-d880179b2a3aacae96bb4771a3c9e227ca6d5818.tar.gz | |
Fix compilation on linux.
Diffstat (limited to 'plugins')
| -rwxr-xr-x | plugins/peopsxgl/Makefile.am | 16 | ||||
| -rwxr-xr-x | plugins/peopsxgl/gpu.c | 2 | ||||
| -rwxr-xr-x | plugins/peopsxgl/prim.c | 2 |
3 files changed, 15 insertions, 5 deletions
diff --git a/plugins/peopsxgl/Makefile.am b/plugins/peopsxgl/Makefile.am index 3c8f7250..9bcd6bea 100755 --- a/plugins/peopsxgl/Makefile.am +++ b/plugins/peopsxgl/Makefile.am @@ -9,9 +9,19 @@ libdir = @libdir@/games/psemu/ lib_LTLIBRARIES = libpeopsxgl.la -libpeopsxgl_la_SOURCES = cfg.c cfg.h draw.c draw.h fps.c fps.h gl_ext.h \ - gpu.c gpu.h key.c key.h menu.c menu.h prim.c prim.h soft.c soft.h \ - texture.c texture.h gte_accuracy.c gte_accuracy.h +libpeopsxgl_la_SOURCES = \ + cfg.c cfg.h \ + draw.c draw.h \ + fps.c fps.h \ + gl_ext.h \ + gpu.c gpu.h \ + key.c key.h \ + menu.c menu.h \ + prim.c prim.h \ + soft.c soft.h \ + texture.c texture.h \ + gte_accuracy.c gte_accuracy.h \ + pgxp_gpu.c pgxp_gpu.h libpeopsxgl_la_LDFLAGS = -module -avoid-version libpeopsxgl_la_LIBADD = -lX11 -lXxf86vm -lGL -lm diff --git a/plugins/peopsxgl/gpu.c b/plugins/peopsxgl/gpu.c index 99ef36ba..c19dd2b6 100755 --- a/plugins/peopsxgl/gpu.c +++ b/plugins/peopsxgl/gpu.c @@ -48,7 +48,7 @@ static int iOldMode=0; #include "fps.h" #include "key.h" #include "gte_accuracy.h" -#include "PGXP_gpu.h" +#include "pgxp_gpu.h" #ifdef _WINDOWS #include "resource.h" #include "ssave.h" diff --git a/plugins/peopsxgl/prim.c b/plugins/peopsxgl/prim.c index b2aad92b..1af588f0 100755 --- a/plugins/peopsxgl/prim.c +++ b/plugins/peopsxgl/prim.c @@ -25,7 +25,7 @@ #include "draw.h" #include "soft.h" #include "texture.h" -#include "PGXP_gpu.h" +#include "pgxp_gpu.h" //////////////////////////////////////////////////////////////////////// // defines |
