diff --git a/Makefile.common b/Makefile.common index 9fe0094067..aeead32409 100644 --- a/Makefile.common +++ b/Makefile.common @@ -732,8 +732,9 @@ ifeq ($(HAVE_FFMPEG), 1) ifneq ($(C89_BUILD), 1) ifneq ($(C90_BUILD), 1) ifneq ($(HAVE_GLES), 1) - OBJ += cores/libretro-ffmpeg/fft/fft.o - DEFINES += -Ideps -DHAVE_GL_FFT + OBJ += cores/libretro-ffmpeg/fft/fft.o + CXX_BUILD = 1 + DEFINES += -Ideps -DHAVE_GL_FFT endif endif endif diff --git a/tasks/task_save_state.c b/tasks/task_save_state.c index 8c8a8dd002..73f47e941f 100644 --- a/tasks/task_save_state.c +++ b/tasks/task_save_state.c @@ -228,6 +228,6 @@ bool content_rename_state(const char *origin, const char *dest) if (!ret) return true; - RARCH_LOG ("Error %d renaming file %s", ret, origin); + RARCH_LOG("Error %d renaming file %s\n", ret, origin); return false; }