diff --git a/src/app/core/common.h b/src/app/core/common.h index 2cb7cd61..25bf722c 100644 --- a/src/app/core/common.h +++ b/src/app/core/common.h @@ -19,6 +19,8 @@ namespace app { */ namespace core { +constexpr std::string_view kYazeVersion = "0.2.1"; + std::string UppercaseHexByte(uint8_t byte, bool leading = false); std::string UppercaseHexWord(uint16_t word, bool leading = false); std::string UppercaseHexLong(uint32_t dword); diff --git a/src/app/core/constants.h b/src/app/core/constants.h index efeb6445..1b2dc1f4 100644 --- a/src/app/core/constants.h +++ b/src/app/core/constants.h @@ -1,8 +1,6 @@ #ifndef YAZE_APP_CORE_CONSTANTS_H #define YAZE_APP_CORE_CONSTANTS_H -#include - #define TAB_BAR(w) if (ImGui::BeginTabBar(w)) { #define END_TAB_BAR() \ ImGui::EndTabBar(); \ @@ -120,14 +118,4 @@ using ushort = unsigned short; using uint = unsigned int; using uchar = unsigned char; -namespace yaze { -namespace app { -namespace core { - -constexpr std::string_view kYazeVersion = "0.2.1"; - -} // namespace core -} // namespace app -} // namespace yaze - #endif \ No newline at end of file