summaryrefslogtreecommitdiffstats
path: root/src/AssetManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/AssetManager.cpp')
-rw-r--r--src/AssetManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AssetManager.cpp b/src/AssetManager.cpp
index 19cd452..514d008 100644
--- a/src/AssetManager.cpp
+++ b/src/AssetManager.cpp
@@ -1,7 +1,7 @@
#include "AssetManager.hpp"
#include <fstream>
-#include <experimental/filesystem>
+#include <filesystem>
#include <nlohmann/json.hpp>
#include <easylogging++.h>
@@ -16,7 +16,7 @@
#include "Utility.hpp"
#include "Plugin.hpp"
-namespace fs = std::experimental::filesystem::v1;
+namespace fs = std::filesystem;
const fs::path pathToAssets = "./assets/";
const std::string pathToAssetsList = "./items.json";