aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Brown <themagnificentmrb@gmail.com>2018-02-13 19:37:26 -0800
committerGarrett Brown <themagnificentmrb@gmail.com>2018-02-15 20:12:57 -0800
commit102e36fd050a7a26537aa3daaf41f56b89a3a180 (patch)
treef7bae121ec15454cb7da9b59719cf3efaa06cf77
parentf5871d92d1901edd66829e5fdc7ba75c7e675bfe (diff)
RetroPlayer: Rename windows/ folder to guiwindows/
Original idea credit vel0city.
-rw-r--r--cmake/treedata/common/retroplayer.txt2
-rw-r--r--xbmc/cores/RetroPlayer/guiwindows/CMakeLists.txt (renamed from xbmc/cores/RetroPlayer/windows/CMakeLists.txt)2
-rw-r--r--xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreen.cpp (renamed from xbmc/cores/RetroPlayer/windows/GameWindowFullScreen.cpp)0
-rw-r--r--xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreen.h (renamed from xbmc/cores/RetroPlayer/windows/GameWindowFullScreen.h)0
-rw-r--r--xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreenText.cpp (renamed from xbmc/cores/RetroPlayer/windows/GameWindowFullScreenText.cpp)0
-rw-r--r--xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreenText.h (renamed from xbmc/cores/RetroPlayer/windows/GameWindowFullScreenText.h)0
-rw-r--r--xbmc/cores/RetroPlayer/rendering/GUIRenderTarget.cpp2
-rw-r--r--xbmc/guilib/GUIWindowManager.cpp2
8 files changed, 4 insertions, 4 deletions
diff --git a/cmake/treedata/common/retroplayer.txt b/cmake/treedata/common/retroplayer.txt
index 97e27b322d..beea6c7799 100644
--- a/cmake/treedata/common/retroplayer.txt
+++ b/cmake/treedata/common/retroplayer.txt
@@ -1,7 +1,7 @@
xbmc/cores/RetroPlayer cores/RetroPlayer
xbmc/cores/RetroPlayer/guicontrols cores/RetroPlayer/guicontrols
+xbmc/cores/RetroPlayer/guiwindows cores/RetroPlayer/guiwindows
xbmc/cores/RetroPlayer/process cores/RetroPlayer/process
xbmc/cores/RetroPlayer/rendering cores/RetroPlayer/rendering
xbmc/cores/RetroPlayer/rendering/VideoRenderers cores/RetroPlayer/rendering/VideoRenderers
xbmc/cores/RetroPlayer/rendering/VideoShaders cores/RetroPlayer/rendering/VideoShaders
-xbmc/cores/RetroPlayer/windows cores/RetroPlayer/windows
diff --git a/xbmc/cores/RetroPlayer/windows/CMakeLists.txt b/xbmc/cores/RetroPlayer/guiwindows/CMakeLists.txt
index 9c0c6cce18..aaa05a20ea 100644
--- a/xbmc/cores/RetroPlayer/windows/CMakeLists.txt
+++ b/xbmc/cores/RetroPlayer/guiwindows/CMakeLists.txt
@@ -6,4 +6,4 @@ set(HEADERS GameWindowFullScreen.h
GameWindowFullScreenText.h
)
-core_add_library(retroplayer_windows)
+core_add_library(retroplayer_guiwindows)
diff --git a/xbmc/cores/RetroPlayer/windows/GameWindowFullScreen.cpp b/xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreen.cpp
index d9eba1a9a9..d9eba1a9a9 100644
--- a/xbmc/cores/RetroPlayer/windows/GameWindowFullScreen.cpp
+++ b/xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreen.cpp
diff --git a/xbmc/cores/RetroPlayer/windows/GameWindowFullScreen.h b/xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreen.h
index e6751a24cd..e6751a24cd 100644
--- a/xbmc/cores/RetroPlayer/windows/GameWindowFullScreen.h
+++ b/xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreen.h
diff --git a/xbmc/cores/RetroPlayer/windows/GameWindowFullScreenText.cpp b/xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreenText.cpp
index 639ac3563c..639ac3563c 100644
--- a/xbmc/cores/RetroPlayer/windows/GameWindowFullScreenText.cpp
+++ b/xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreenText.cpp
diff --git a/xbmc/cores/RetroPlayer/windows/GameWindowFullScreenText.h b/xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreenText.h
index 29ca192c22..29ca192c22 100644
--- a/xbmc/cores/RetroPlayer/windows/GameWindowFullScreenText.h
+++ b/xbmc/cores/RetroPlayer/guiwindows/GameWindowFullScreenText.h
diff --git a/xbmc/cores/RetroPlayer/rendering/GUIRenderTarget.cpp b/xbmc/cores/RetroPlayer/rendering/GUIRenderTarget.cpp
index 5add8e4390..2ac6596e8a 100644
--- a/xbmc/cores/RetroPlayer/rendering/GUIRenderTarget.cpp
+++ b/xbmc/cores/RetroPlayer/rendering/GUIRenderTarget.cpp
@@ -21,7 +21,7 @@
#include "GUIRenderTarget.h"
#include "IRenderManager.h"
#include "cores/RetroPlayer/guicontrols/GUIGameControl.h"
-#include "cores/RetroPlayer/windows/GameWindowFullScreen.h"
+#include "cores/RetroPlayer/guiwindows/GameWindowFullScreen.h"
using namespace KODI;
using namespace RETRO;
diff --git a/xbmc/guilib/GUIWindowManager.cpp b/xbmc/guilib/GUIWindowManager.cpp
index 6ba09d7ccb..4944b2cbc0 100644
--- a/xbmc/guilib/GUIWindowManager.cpp
+++ b/xbmc/guilib/GUIWindowManager.cpp
@@ -151,7 +151,7 @@
#include "addons/interfaces/AddonInterfaces.h"
/* Game related include files */
-#include "cores/RetroPlayer/windows/GameWindowFullScreen.h"
+#include "cores/RetroPlayer/guiwindows/GameWindowFullScreen.h"
#include "games/controllers/windows/GUIControllerWindow.h"
#include "games/windows/GUIWindowGames.h"
#include "games/dialogs/osd/DialogGameOSD.h"