aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-04-17 23:48:23 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-04-17 23:48:23 -0400
commit70c2cce963264678b5ba5b6aa17c2653bf459e61 (patch)
tree0d3335e7dda2431260384a802c93dfda2d1ffc87
parentc3a4b4bfca154f3f27830fe747c0fd74f8459d84 (diff)
renamed hw_lcd module to just lcd
-rw-r--r--src/core/core.vcxproj4
-rw-r--r--src/core/core.vcxproj.filters12
-rw-r--r--src/core/hle/syscall.cpp2
-rw-r--r--src/core/hw/hw.cpp2
-rw-r--r--src/core/hw/lcd.cpp (renamed from src/core/hw/hw_lcd.cpp)2
-rw-r--r--src/core/hw/lcd.h (renamed from src/core/hw/hw_lcd.h)0
-rw-r--r--src/video_core/renderer_opengl/renderer_opengl.cpp2
7 files changed, 11 insertions, 13 deletions
diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj
index 80bd75ee..b6fc604c 100644
--- a/src/core/core.vcxproj
+++ b/src/core/core.vcxproj
@@ -160,7 +160,7 @@
<ClCompile Include="hle\service\srv.cpp" />
<ClCompile Include="hle\syscall.cpp" />
<ClCompile Include="hw\hw.cpp" />
- <ClCompile Include="hw\hw_lcd.cpp" />
+ <ClCompile Include="hw\lcd.cpp" />
<ClCompile Include="hw\ndma.cpp" />
<ClCompile Include="loader.cpp" />
<ClCompile Include="mem_map.cpp" />
@@ -199,7 +199,7 @@
<ClInclude Include="hle\service\srv.h" />
<ClInclude Include="hle\syscall.h" />
<ClInclude Include="hw\hw.h" />
- <ClInclude Include="hw\hw_lcd.h" />
+ <ClInclude Include="hw\lcd.h" />
<ClInclude Include="hw\ndma.h" />
<ClInclude Include="loader.h" />
<ClInclude Include="mem_map.h" />
diff --git a/src/core/core.vcxproj.filters b/src/core/core.vcxproj.filters
index 61cb6e40..ff7877fe 100644
--- a/src/core/core.vcxproj.filters
+++ b/src/core/core.vcxproj.filters
@@ -69,9 +69,6 @@
<ClCompile Include="hw\hw.cpp">
<Filter>hw</Filter>
</ClCompile>
- <ClCompile Include="hw\hw_lcd.cpp">
- <Filter>hw</Filter>
- </ClCompile>
<ClCompile Include="elf\elf_reader.cpp">
<Filter>elf</Filter>
</ClCompile>
@@ -105,6 +102,9 @@
<ClCompile Include="hw\ndma.cpp">
<Filter>hw</Filter>
</ClCompile>
+ <ClCompile Include="hw\lcd.cpp">
+ <Filter>hw</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="arm\disassembler\arm_disasm.h">
@@ -161,9 +161,6 @@
<ClInclude Include="hw\hw.h">
<Filter>hw</Filter>
</ClInclude>
- <ClInclude Include="hw\hw_lcd.h">
- <Filter>hw</Filter>
- </ClInclude>
<ClInclude Include="elf\elf_reader.h">
<Filter>elf</Filter>
</ClInclude>
@@ -205,6 +202,9 @@
<ClInclude Include="hw\ndma.h">
<Filter>hw</Filter>
</ClInclude>
+ <ClInclude Include="hw\lcd.h">
+ <Filter>hw</Filter>
+ </ClInclude>
</ItemGroup>
<ItemGroup>
<Text Include="CMakeLists.txt" />
diff --git a/src/core/hle/syscall.cpp b/src/core/hle/syscall.cpp
index 0cb56395..e5533a74 100644
--- a/src/core/hle/syscall.cpp
+++ b/src/core/hle/syscall.cpp
@@ -6,8 +6,6 @@
#include "core/mem_map.h"
-#include "core/hw/hw_lcd.h"
-
#include "core/hle/function_wrappers.h"
#include "core/hle/syscall.h"
#include "core/hle/service/service.h"
diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp
index 1f240f09..16bd7012 100644
--- a/src/core/hw/hw.cpp
+++ b/src/core/hw/hw.cpp
@@ -6,7 +6,7 @@
#include "common/log.h"
#include "core/hw/hw.h"
-#include "core/hw/hw_lcd.h"
+#include "core/hw/lcd.h"
#include "core/hw/ndma.h"
namespace HW {
diff --git a/src/core/hw/hw_lcd.cpp b/src/core/hw/lcd.cpp
index 9fb485ba..3013673f 100644
--- a/src/core/hw/hw_lcd.cpp
+++ b/src/core/hw/lcd.cpp
@@ -6,7 +6,7 @@
#include "common/log.h"
#include "core/core.h"
-#include "core/hw/hw_lcd.h"
+#include "core/hw/lcd.h"
#include "video_core/video_core.h"
diff --git a/src/core/hw/hw_lcd.h b/src/core/hw/lcd.h
index 386ed600..386ed600 100644
--- a/src/core/hw/hw_lcd.h
+++ b/src/core/hw/lcd.h
diff --git a/src/video_core/renderer_opengl/renderer_opengl.cpp b/src/video_core/renderer_opengl/renderer_opengl.cpp
index 168de925..35804aee 100644
--- a/src/video_core/renderer_opengl/renderer_opengl.cpp
+++ b/src/video_core/renderer_opengl/renderer_opengl.cpp
@@ -2,7 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
-#include "core/hw/hw_lcd.h"
+#include "core/hw/lcd.h"
#include "video_core/video_core.h"
#include "video_core/renderer_opengl/renderer_opengl.h"