1
0
mirror of synced 2025-01-18 00:56:49 +01:00

imgui: Fixed fontawesome

This commit is contained in:
WerWolv 2021-02-25 21:50:57 +01:00
parent 93802f5872
commit 26b881e4c9
3 changed files with 3028 additions and 471 deletions

File diff suppressed because it is too large Load Diff

View File

@ -6,8 +6,8 @@
#define FONT_ICON_FILE_NAME_FAR "fa-regular-400.ttf"
#define FONT_ICON_FILE_NAME_FAS "fa-solid-900.ttf"
extern const unsigned int font_awesome_compressed_size = 22262;
extern const unsigned int font_awesome_compressed_data[22264/4];
extern const unsigned int font_awesome_compressed_size;
extern const unsigned int font_awesome_compressed_data[144852/4];
#define ICON_MIN_FA 0xe005
#define ICON_MAX_FA 0xf8ff

View File

@ -3,6 +3,9 @@
#include <hex.hpp>
#include <imgui.h>
#include <imgui_imhex_extensions.h>
#include <fontawesome_font.h>
#include <nfd.hpp>
#include <hex/api/event.hpp>