mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-07-10 02:55:22 +02:00
Switched to a custom logging lib instead of that spdlog junk
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
#include <imgui.h>
|
||||
#include <imgui_internal.h>
|
||||
#include <config.h>
|
||||
#include <spdlog/spdlog.h>
|
||||
#include <utils/flog.h>
|
||||
#include <filesystem>
|
||||
|
||||
namespace style {
|
||||
@ -22,7 +22,7 @@ namespace style {
|
||||
bool loadFonts(std::string resDir) {
|
||||
ImFontAtlas* fonts = ImGui::GetIO().Fonts;
|
||||
if (!std::filesystem::is_directory(resDir)) {
|
||||
spdlog::error("Invalid resource directory: {0}", resDir);
|
||||
flog::error("Invalid resource directory: {0}", resDir);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user