Skip to content

Commit

Permalink
Updated to C++ 20 (#30)
Browse files Browse the repository at this point in the history
- Updated imgui notify
- Updated SPDLog
- Added SourceLoc to Print Types (Trace, Debug, Warning, Error, Fatal)
- Fixed general errors/warnings with the move to C++ 20
- Fixed some files using tabs instead of spaces
  • Loading branch information
NixAJ committed Apr 6, 2024
1 parent 9cab1ea commit eeac087
Show file tree
Hide file tree
Showing 79 changed files with 6,865 additions and 12,723 deletions.
26 changes: 24 additions & 2 deletions Dependencies/imgui/imgui/IconsFontAwesome6.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,30 @@
// for use with https://github.com/FortAwesome/Font-Awesome/blob/6.x/webfonts/fa-regular-400.ttf, https://github.com/FortAwesome/Font-Awesome/blob/6.x/webfonts/fa-solid-900.ttf
#pragma once

#define FONT_ICON_FILE_NAME_FAR "fa-regular-400.ttf"
#define FONT_ICON_FILE_NAME_FAS "fa-solid-900.ttf"
/**
* WARNING
*
* If used with cmake, replace the following lines:
*
* #define FONT_ICON_FILE_NAME_FAR "./fonts/fa-regular-400.ttf"
* #define FONT_ICON_FILE_NAME_FAS "./fonts/fa-solid-900.ttf"
*
* with:
*
* #if _WIN32
* #define FONT_ICON_FILE_NAME_FAR "../../fonts/fa-regular-400.ttf"
* #define FONT_ICON_FILE_NAME_FAS "../../fonts/fa-solid-900.ttf"
* #else
* #define FONT_ICON_FILE_NAME_FAR "../fonts/fa-regular-400.ttf"
* #define FONT_ICON_FILE_NAME_FAS "../fonts/fa-solid-900.ttf"
*/

#define FONT_ICON_FILE_NAME_FAR "../../fonts/fa-regular-400.ttf"
#define FONT_ICON_FILE_NAME_FAS "../../fonts/fa-solid-900.ttf"





#define ICON_MIN_FA 0xe005
#define ICON_MAX_16_FA 0xf8ff
Expand Down
Loading

0 comments on commit eeac087

Please sign in to comment.