From 3305a923e18672ea7011d22c4f8de018d6f340bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sat, 23 Jul 2016 19:16:16 +0200 Subject: [PATCH] WiimoteReal: Rename IONix to IOLinux IONix.cpp really isn't for Unix, as the name would imply, but only for Linux, so there is no reason to name it IONix. --- Source/Core/Core/CMakeLists.txt | 2 +- Source/Core/Core/HW/WiimoteReal/{IONix.cpp => IOLinux.cpp} | 2 +- Source/Core/Core/HW/WiimoteReal/{IONix.h => IOLinux.h} | 0 Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename Source/Core/Core/HW/WiimoteReal/{IONix.cpp => IOLinux.cpp} (99%) rename Source/Core/Core/HW/WiimoteReal/{IONix.h => IOLinux.h} (100%) diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt index 04b6130c94..d194d8447c 100644 --- a/Source/Core/Core/CMakeLists.txt +++ b/Source/Core/Core/CMakeLists.txt @@ -256,7 +256,7 @@ elseif(APPLE) elseif(UNIX) set(SRCS ${SRCS} HW/BBA-TAP/TAP_Unix.cpp) if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux" AND BLUEZ_FOUND) - set(SRCS ${SRCS} HW/WiimoteReal/IONix.cpp) + set(SRCS ${SRCS} HW/WiimoteReal/IOLinux.cpp) set(LIBS ${LIBS} bluetooth) elseif(ANDROID) set(SRCS ${SRCS} HW/WiimoteReal/IOAndroid.cpp) diff --git a/Source/Core/Core/HW/WiimoteReal/IONix.cpp b/Source/Core/Core/HW/WiimoteReal/IOLinux.cpp similarity index 99% rename from Source/Core/Core/HW/WiimoteReal/IONix.cpp rename to Source/Core/Core/HW/WiimoteReal/IOLinux.cpp index 76dd255c9d..57ffeac585 100644 --- a/Source/Core/Core/HW/WiimoteReal/IONix.cpp +++ b/Source/Core/Core/HW/WiimoteReal/IOLinux.cpp @@ -10,7 +10,7 @@ #include "Common/CommonTypes.h" #include "Common/Logging/Log.h" -#include "Core/HW/WiimoteReal/IONix.h" +#include "Core/HW/WiimoteReal/IOLinux.h" namespace WiimoteReal { diff --git a/Source/Core/Core/HW/WiimoteReal/IONix.h b/Source/Core/Core/HW/WiimoteReal/IOLinux.h similarity index 100% rename from Source/Core/Core/HW/WiimoteReal/IONix.h rename to Source/Core/Core/HW/WiimoteReal/IOLinux.h diff --git a/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp b/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp index d1ee896ca2..7786ed5e4a 100644 --- a/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp +++ b/Source/Core/Core/HW/WiimoteReal/WiimoteReal.cpp @@ -18,7 +18,7 @@ #include "Core/HW/WiimoteEmu/WiimoteEmu.h" #include "Core/HW/WiimoteEmu/WiimoteHid.h" #include "Core/HW/WiimoteReal/IOAndroid.h" -#include "Core/HW/WiimoteReal/IONix.h" +#include "Core/HW/WiimoteReal/IOLinux.h" #include "Core/HW/WiimoteReal/IOWin.h" #include "Core/HW/WiimoteReal/IOdarwin.h" #include "Core/Host.h"