1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 20:25:47 +00:00

Rename some files

This commit is contained in:
twinaphex 2014-10-01 23:27:52 +02:00
parent 3c760d27a8
commit 3a2f3755ad
7 changed files with 6 additions and 6 deletions

View File

@ -282,7 +282,7 @@ ifeq ($(HAVE_FREETYPE), 1)
endif
ifeq ($(HAVE_THREADS), 1)
OBJ += autosave.o thread.o gfx/video_thread_wrapper.o audio/thread_wrapper.o
OBJ += autosave.o thread.o gfx/video_thread_wrapper.o audio/audio_thread_wrapper.o
DEFINES += -DHAVE_THREADS
ifeq ($(findstring Haiku,$(OS)),)
LIBS += -lpthread

View File

@ -13,7 +13,7 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "thread_wrapper.h"
#include "audio_thread_wrapper.h"
#include "../thread.h"
#include "../general.h"
#include "../performance.h"

View File

@ -24,8 +24,8 @@
#include <math.h>
#include "compat/posix_string.h"
#include "audio/utils.h"
#include "gfx/thread_wrapper.h"
#include "audio/thread_wrapper.h"
#include "gfx/video_thread_wrapper.h"
#include "audio/audio_thread_wrapper.h"
#include "gfx/gfx_common.h"
#ifdef HAVE_X11

View File

@ -13,7 +13,7 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "thread_wrapper.h"
#include "video_thread_wrapper.h"
#include "../thread.h"
#include "../general.h"
#include "../performance.h"

View File

@ -598,7 +598,7 @@ THREAD
#elif defined(HAVE_THREADS)
#include "../thread.c"
#include "../gfx/video_thread_wrapper.c"
#include "../audio/thread_wrapper.c"
#include "../audio/audio_thread_wrapper.c"
#include "../autosave.c"
#endif