Teleportation in editor

This commit is contained in:
2022-11-19 22:53:24 +01:00
parent 6ac2726a94
commit 9402f2afa2
12 changed files with 255 additions and 19 deletions
-2
View File
@@ -65,8 +65,6 @@ bool FSLib::isDirectory(const string &path) {
}
bool FSLib::rename(const string &file_a, const string &file_b) {
// TODO log
std::cout << file_a << " -> " << file_b << std::endl;
return ::rename(file_a.c_str(), file_b.c_str()) == 0;
}