From 2dcc85d64c8ac7fb10fb710d79de7eda14ec347b Mon Sep 17 00:00:00 2001 From: orbea Date: Wed, 10 May 2017 16:47:40 -0700 Subject: [PATCH] Allow building the player with the legacy GSdx. --- plugins/GSdx_legacy/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/GSdx_legacy/CMakeLists.txt b/plugins/GSdx_legacy/CMakeLists.txt index 1313991ee1..5d2ffe425e 100644 --- a/plugins/GSdx_legacy/CMakeLists.txt +++ b/plugins/GSdx_legacy/CMakeLists.txt @@ -218,11 +218,11 @@ else() endif() ################################### Replay Loader -if(BUILD_REPLAY_LOADERS) +if(BUILD_REPLAY_LOADERS AND NOT GSdx) set(Replay pcsx2_GSReplayLoader) set(GSdxReplayLoaderFinalSources ${GSdxFinalSources} linux_replay.cpp ) add_pcsx2_executable(${Replay} "${GSdxReplayLoaderFinalSources}" "${GSdxFinalLibs}" "${GSdxFinalFlags}") -endif(BUILD_REPLAY_LOADERS) +endif()