get rid of fmt dependency since we are on C++23

This commit is contained in:
irisz64
2025-07-22 11:30:37 +02:00
parent 9b169825ee
commit 8549d5a21c
173 changed files with 452 additions and 83654 deletions

View File

@@ -1,5 +1,4 @@
#include <SettingsWindow.hpp>
#include <fmt/core.h>
#include <nfd.hpp>
#include <log.hpp>
#include <Options.hpp>
@@ -20,7 +19,7 @@ bool SettingsWindow::render() {
auto result = NFD::PickFolder(outPath);
if(result == NFD_ERROR)
Util::panic("Error: {}", NFD::GetError());
panic("Error: {}", NFD::GetError());
if(result != NFD_CANCEL) {
savesPath = outPath.get();