diff --git a/ogl_editor/basic_example/basic_example.c b/ogl_editor/basic_example/basic_example.c index 57f9352..f09ebbf 100644 --- a/ogl_editor/basic_example/basic_example.c +++ b/ogl_editor/basic_example/basic_example.c @@ -5,7 +5,7 @@ #else #include #endif -#include "../../sync/sync.h" +#include "../../lib/sync.h" static struct sync_device *device; #if !defined(SYNC_PLAYER) diff --git a/ogl_editor/src/Commands.c b/ogl_editor/src/Commands.c index 166bec0..cf22fac 100644 --- a/ogl_editor/src/Commands.c +++ b/ogl_editor/src/Commands.c @@ -2,8 +2,8 @@ #include "RemoteConnection.h" #include "TrackData.h" #include "TrackView.h" -#include "../../sync/sync.h" -#include "../../sync/track.h" +#include "../../lib/sync.h" +#include "../../lib/track.h" #include #include #include diff --git a/ogl_editor/src/Editor.c b/ogl_editor/src/Editor.c index a05f8cd..766efef 100644 --- a/ogl_editor/src/Editor.c +++ b/ogl_editor/src/Editor.c @@ -14,9 +14,8 @@ #include "Commands.h" #include "MinecraftiaFont.h" #include "Window.h" -#include "../../sync/sync.h" -#include "../../sync/base.h" -#include "../../sync/data.h" +#include "../../lib/sync.h" +#include "../../lib/base.h" #include /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/ogl_editor/src/RemoteConnection.c b/ogl_editor/src/RemoteConnection.c index 40330c8..44e8c3a 100644 --- a/ogl_editor/src/RemoteConnection.c +++ b/ogl_editor/src/RemoteConnection.c @@ -22,8 +22,8 @@ #include #endif -#include "../../sync/base.h" -#include "../../sync/track.h" +#include "../../lib/base.h" +#include "../../lib/track.h" #include "rlog.h" #include diff --git a/ogl_editor/src/TrackData.h b/ogl_editor/src/TrackData.h index b5925c6..eb276af 100644 --- a/ogl_editor/src/TrackData.h +++ b/ogl_editor/src/TrackData.h @@ -1,7 +1,7 @@ #pragma once #include -#include "../../sync/data.h" +#include "../../lib/track.h" /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/ogl_editor/src/TrackView.c b/ogl_editor/src/TrackView.c index 400d801..6e4ada2 100644 --- a/ogl_editor/src/TrackView.c +++ b/ogl_editor/src/TrackView.c @@ -7,9 +7,8 @@ #include "rlog.h" #include "minmax.h" #include "ImageData.h" -#include "../../sync/sync.h" -#include "../../sync/data.h" -#include "../../sync/track.h" +#include "../../lib/sync.h" +#include "../../lib/track.h" #if defined(__APPLE__) #include diff --git a/ogl_editor/src/loadsave.c b/ogl_editor/src/loadsave.c index d07913a..69a1610 100644 --- a/ogl_editor/src/loadsave.c +++ b/ogl_editor/src/loadsave.c @@ -3,7 +3,6 @@ #include "TrackData.h" #include "../external/mxml/mxml.h" #include "RemoteConnection.h" -#include "../../sync/data.h" #include #include #include diff --git a/ogl_editor/units.lua b/ogl_editor/units.lua index ef9199a..79458e0 100644 --- a/ogl_editor/units.lua +++ b/ogl_editor/units.lua @@ -65,7 +65,7 @@ StaticLibrary { Sources = { Glob { - Dir = "../sync", + Dir = "../lib", Extensions = { ".c" }, }, },