remove old bindings format support

This commit is contained in:
MihailRis
2024-06-07 14:13:49 +03:00
parent 27cb5f6e51
commit 14911aa30f
5 changed files with 0 additions and 39 deletions
-8
View File
@@ -116,14 +116,6 @@ void Engine::loadControls() {
logger.info() << "loading controls";
std::string text = files::read_string(controls_file);
Events::loadBindings(controls_file.u8string(), text);
} else {
controls_file = paths->getControlsFileOld();
if (fs::is_regular_file(controls_file)) {
logger.info() << "loading controls (old)";
std::string text = files::read_string(controls_file);
Events::loadBindingsOld(controls_file.u8string(), text);
fs::remove(controls_file);
}
}
}