diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/core/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/core/frontend/emu_window.h | 2 | ||||
| -rw-r--r-- | src/core/frontend/framebuffer_layout.cpp (renamed from src/common/framebuffer_layout.cpp) | 2 | ||||
| -rw-r--r-- | src/core/frontend/framebuffer_layout.h (renamed from src/common/framebuffer_layout.h) | 0 |
5 files changed, 4 insertions, 4 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 6905d2d50..546a14500 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -27,7 +27,6 @@ configure_file("${CMAKE_CURRENT_SOURCE_DIR}/scm_rev.cpp.in" "${CMAKE_CURRENT_SOU | |||
| 27 | set(SRCS | 27 | set(SRCS |
| 28 | break_points.cpp | 28 | break_points.cpp |
| 29 | file_util.cpp | 29 | file_util.cpp |
| 30 | framebuffer_layout.cpp | ||
| 31 | hash.cpp | 30 | hash.cpp |
| 32 | logging/filter.cpp | 31 | logging/filter.cpp |
| 33 | logging/text_formatter.cpp | 32 | logging/text_formatter.cpp |
| @@ -56,7 +55,6 @@ set(HEADERS | |||
| 56 | common_paths.h | 55 | common_paths.h |
| 57 | common_types.h | 56 | common_types.h |
| 58 | file_util.h | 57 | file_util.h |
| 59 | framebuffer_layout.h | ||
| 60 | hash.h | 58 | hash.h |
| 61 | linear_disk_cache.h | 59 | linear_disk_cache.h |
| 62 | logging/text_formatter.h | 60 | logging/text_formatter.h |
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index b19335fe1..d9618c40c 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -32,6 +32,7 @@ set(SRCS | |||
| 32 | frontend/camera/factory.cpp | 32 | frontend/camera/factory.cpp |
| 33 | frontend/camera/interface.cpp | 33 | frontend/camera/interface.cpp |
| 34 | frontend/emu_window.cpp | 34 | frontend/emu_window.cpp |
| 35 | frontend/framebuffer_layout.cpp | ||
| 35 | frontend/motion_emu.cpp | 36 | frontend/motion_emu.cpp |
| 36 | gdbstub/gdbstub.cpp | 37 | gdbstub/gdbstub.cpp |
| 37 | hle/config_mem.cpp | 38 | hle/config_mem.cpp |
| @@ -216,6 +217,7 @@ set(HEADERS | |||
| 216 | frontend/camera/factory.h | 217 | frontend/camera/factory.h |
| 217 | frontend/camera/interface.h | 218 | frontend/camera/interface.h |
| 218 | frontend/emu_window.h | 219 | frontend/emu_window.h |
| 220 | frontend/framebuffer_layout.h | ||
| 219 | frontend/input.h | 221 | frontend/input.h |
| 220 | frontend/motion_emu.h | 222 | frontend/motion_emu.h |
| 221 | gdbstub/gdbstub.h | 223 | gdbstub/gdbstub.h |
diff --git a/src/core/frontend/emu_window.h b/src/core/frontend/emu_window.h index 36f2667fa..9414123a4 100644 --- a/src/core/frontend/emu_window.h +++ b/src/core/frontend/emu_window.h | |||
| @@ -8,8 +8,8 @@ | |||
| 8 | #include <tuple> | 8 | #include <tuple> |
| 9 | #include <utility> | 9 | #include <utility> |
| 10 | #include "common/common_types.h" | 10 | #include "common/common_types.h" |
| 11 | #include "common/framebuffer_layout.h" | ||
| 12 | #include "common/math_util.h" | 11 | #include "common/math_util.h" |
| 12 | #include "core/frontend/framebuffer_layout.h" | ||
| 13 | 13 | ||
| 14 | /** | 14 | /** |
| 15 | * Abstraction class used to provide an interface between emulation code and the frontend | 15 | * Abstraction class used to provide an interface between emulation code and the frontend |
diff --git a/src/common/framebuffer_layout.cpp b/src/core/frontend/framebuffer_layout.cpp index a2a0e7dad..f3815170d 100644 --- a/src/common/framebuffer_layout.cpp +++ b/src/core/frontend/framebuffer_layout.cpp | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | #include <cmath> | 5 | #include <cmath> |
| 6 | 6 | ||
| 7 | #include "common/assert.h" | 7 | #include "common/assert.h" |
| 8 | #include "common/framebuffer_layout.h" | 8 | #include "core/frontend/framebuffer_layout.h" |
| 9 | #include "core/settings.h" | 9 | #include "core/settings.h" |
| 10 | #include "video_core/video_core.h" | 10 | #include "video_core/video_core.h" |
| 11 | 11 | ||
diff --git a/src/common/framebuffer_layout.h b/src/core/frontend/framebuffer_layout.h index f1df5c55a..f1df5c55a 100644 --- a/src/common/framebuffer_layout.h +++ b/src/core/frontend/framebuffer_layout.h | |||