Browse Source

Fix incorrect relative includes (#2681)

Nwokoma Uchechukwu 5 years ago
parent
commit
44220053a9
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp

+ 3 - 3
Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp

@@ -53,9 +53,9 @@
 #endif
 
 #ifdef __EMSCRIPTEN__
-#include "../Input/Input.h"
-#include "../UI/Cursor.h"
-#include "../UI/UI.h"
+#include "../../Input/Input.h"
+#include "../../UI/Cursor.h"
+#include "../../UI/UI.h"
 #include <emscripten/emscripten.h>
 #include <emscripten/bind.h>