windows housekeeping

This commit is contained in:
scawful
2025-08-21 19:18:50 -04:00
parent 7f60ddcd42
commit a04f8ecdb4
3 changed files with 4 additions and 1 deletions

View File

@@ -88,7 +88,7 @@ void DrawMenu(Menu &params);
static Menu kMainMenu;
constexpr std::string kSeparator = "-";
const std::string kSeparator = "-";
IMGUI_API bool OpenUrl(const std::string &url);

View File

@@ -5,6 +5,7 @@
#include <cstdint>
#include <vector>
#include <stdexcept>
namespace yaze {
namespace util {

View File

@@ -1,6 +1,8 @@
#ifndef YAZE_UTIL_MACRO_H
#define YAZE_UTIL_MACRO_H
using uint = unsigned int;
#define TAB_ITEM(w) if (ImGui::BeginTabItem(w)) {
#define END_TAB_ITEM() \
ImGui::EndTabItem(); \