diff options
| author | 2014-04-08 20:15:08 -0400 | |
|---|---|---|
| committer | 2014-04-08 20:15:08 -0400 | |
| commit | de0a034a849f5a1cbe2fed9ef2cc4095c56e672a (patch) | |
| tree | c19b7a97fded29a04d7aca5702ab901820a663dc /src/citra/emu_window | |
| parent | got rid of 'src' folders in each sub-project (diff) | |
| download | yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.gz yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.xz yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.zip | |
fixed project includes to use new directory structure
Diffstat (limited to 'src/citra/emu_window')
| -rw-r--r-- | src/citra/emu_window/emu_window_glfw.cpp | 6 | ||||
| -rw-r--r-- | src/citra/emu_window/emu_window_glfw.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/citra/emu_window/emu_window_glfw.cpp b/src/citra/emu_window/emu_window_glfw.cpp index 4cdb7fbb0..0192d8598 100644 --- a/src/citra/emu_window/emu_window_glfw.cpp +++ b/src/citra/emu_window/emu_window_glfw.cpp | |||
| @@ -22,9 +22,9 @@ | |||
| 22 | * http://code.google.com/p/gekko-gc-emu/ | 22 | * http://code.google.com/p/gekko-gc-emu/ |
| 23 | */ | 23 | */ |
| 24 | 24 | ||
| 25 | #include "common.h" | 25 | #include "common/common.h" |
| 26 | #include "video_core.h" | 26 | #include "video_core/video_core.h" |
| 27 | #include "emu_window_glfw.h" | 27 | #include "citra/emu_window/emu_window_glfw.h" |
| 28 | 28 | ||
| 29 | static void OnKeyEvent(GLFWwindow* win, int key, int action) { | 29 | static void OnKeyEvent(GLFWwindow* win, int key, int action) { |
| 30 | // EmuWindow_GLFW* emuwin = (EmuWindow_GLFW*)glfwGetWindowUserPointer(win); | 30 | // EmuWindow_GLFW* emuwin = (EmuWindow_GLFW*)glfwGetWindowUserPointer(win); |
diff --git a/src/citra/emu_window/emu_window_glfw.h b/src/citra/emu_window/emu_window_glfw.h index abca9faa8..c3feb6e51 100644 --- a/src/citra/emu_window/emu_window_glfw.h +++ b/src/citra/emu_window/emu_window_glfw.h | |||
| @@ -27,7 +27,7 @@ | |||
| 27 | #include <GL/glew.h> | 27 | #include <GL/glew.h> |
| 28 | #include <GLFW/glfw3.h> | 28 | #include <GLFW/glfw3.h> |
| 29 | 29 | ||
| 30 | #include "emu_window.h" | 30 | #include "common/emu_window.h" |
| 31 | 31 | ||
| 32 | class EmuWindow_GLFW : public EmuWindow { | 32 | class EmuWindow_GLFW : public EmuWindow { |
| 33 | public: | 33 | public: |