summaryrefslogtreecommitdiff
path: root/src/common/emu_window.cpp
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2015-06-21 14:02:11 +0100
committerGravatar Emmanuel Gil Peyrot2015-06-28 00:36:54 +0100
commit22ae87530b11226895a6a3682b9e75c5f5b9045d (patch)
tree650c7ffea9971d8479a67521050c15b5347e333f /src/common/emu_window.cpp
parentCommon: Remove unused ROUND_UP_POW2 macro. (diff)
downloadyuzu-22ae87530b11226895a6a3682b9e75c5f5b9045d.tar.gz
yuzu-22ae87530b11226895a6a3682b9e75c5f5b9045d.tar.xz
yuzu-22ae87530b11226895a6a3682b9e75c5f5b9045d.zip
Common: Cleanup emu_window includes.
Diffstat (limited to '')
-rw-r--r--src/common/emu_window.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/emu_window.cpp b/src/common/emu_window.cpp
index 43facb85c..b69b05cb9 100644
--- a/src/common/emu_window.cpp
+++ b/src/common/emu_window.cpp
@@ -2,6 +2,12 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <algorithm>
6#include <cmath>
7
8#include "common/assert.h"
9#include "common/key_map.h"
10
5#include "emu_window.h" 11#include "emu_window.h"
6#include "video_core/video_core.h" 12#include "video_core/video_core.h"
7 13