diff options
| author | 2017-05-27 16:10:25 -0700 | |
|---|---|---|
| committer | 2017-05-27 16:10:25 -0700 | |
| commit | d1bf7919daf830befd8c2166f3844fcdb56d68fa (patch) | |
| tree | 60ab4434e7a0503d7ca5f5d195d4709fe634f3c1 /src/common/framebuffer_layout.cpp | |
| parent | Merge pull request #2732 from yuriks/add-fmt (diff) | |
| download | yuzu-d1bf7919daf830befd8c2166f3844fcdb56d68fa.tar.gz yuzu-d1bf7919daf830befd8c2166f3844fcdb56d68fa.tar.xz yuzu-d1bf7919daf830befd8c2166f3844fcdb56d68fa.zip | |
Move framebuffer_layout from Common to Core
This removes a dependency inversion between core and common. It's also
the proper place for the file since it makes screen layout decisions
specific to the 3DS.
Diffstat (limited to '')
| -rw-r--r-- | src/core/frontend/framebuffer_layout.cpp (renamed from src/common/framebuffer_layout.cpp) | 2 |
1 files changed, 1 insertions, 1 deletions
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 | ||