summaryrefslogtreecommitdiff
path: root/src/core/frontend/emu_window.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-05-27 16:10:25 -0700
committerGravatar Yuri Kunde Schlesner2017-05-27 16:10:25 -0700
commitd1bf7919daf830befd8c2166f3844fcdb56d68fa (patch)
tree60ab4434e7a0503d7ca5f5d195d4709fe634f3c1 /src/core/frontend/emu_window.h
parentMerge pull request #2732 from yuriks/add-fmt (diff)
downloadyuzu-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 'src/core/frontend/emu_window.h')
-rw-r--r--src/core/frontend/emu_window.h2
1 files changed, 1 insertions, 1 deletions
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