mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-15 06:50:32 +00:00
Move video_state_python to gfx/drivers_tracker
This commit is contained in:
parent
22022f8133
commit
d3f7bf8527
@ -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)
|
||||||
|
@ -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)
|
||||||
{
|
{
|
@ -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"
|
||||||
|
@ -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
|
||||||
|
|
||||||
/*============================================================
|
/*============================================================
|
||||||
|
Loading…
Reference in New Issue
Block a user