Move video_state_python to gfx/drivers_tracker

This commit is contained in:
twinaphex 2016-09-11 17:59:10 +02:00
parent 22022f8133
commit d3f7bf8527
5 changed files with 7 additions and 7 deletions

View File

@ -308,7 +308,7 @@ endif
ifeq ($(HAVE_PYTHON), 1) ifeq ($(HAVE_PYTHON), 1)
DEFINES += $(PYTHON_CFLAGS) -Wno-unused-parameter DEFINES += $(PYTHON_CFLAGS) -Wno-unused-parameter
LIBS += $(PYTHON_LIBS) LIBS += $(PYTHON_LIBS)
OBJ += gfx/video_state_python.o OBJ += gfx/drivers_tracker/video_state_python.o
endif endif
ifeq ($(HAVE_EMSCRIPTEN), 1) ifeq ($(HAVE_EMSCRIPTEN), 1)

View File

@ -27,10 +27,10 @@
#include <libretro.h> #include <libretro.h>
#include "video_state_python.h" #include "video_state_python.h"
#include "../dynamic.h" #include "../../dynamic.h"
#include "../core.h" #include "../../core.h"
#include "../verbosity.h" #include "../../verbosity.h"
#include "../input/input_config.h" #include "../../input/input_config.h"
static PyObject* py_read_wram(PyObject *self, PyObject *args) static PyObject* py_read_wram(PyObject *self, PyObject *args)
{ {

View File

@ -24,7 +24,7 @@
#endif #endif
#ifdef HAVE_PYTHON #ifdef HAVE_PYTHON
#include "video_state_python.h" #include "drivers_tracker/video_state_python.h"
#endif #endif
#include "video_state_tracker.h" #include "video_state_tracker.h"

View File

@ -523,7 +523,7 @@ STATE TRACKER
#include "../gfx/video_state_tracker.c" #include "../gfx/video_state_tracker.c"
#ifdef HAVE_PYTHON #ifdef HAVE_PYTHON
#include "../gfx/video_state_python.c" #include "../gfx/drivers_tracker/video_state_python.c"
#endif #endif
/*============================================================ /*============================================================