get rid of fmt dependency since we are on C++23
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user