[Misc] Fixed missing guard header (#887)

This commit is contained in:
Adrian
2026-02-23 08:07:23 +00:00
committed by GitHub
parent 9190ce3e36
commit 8d5565da8a
2 changed files with 7 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
/* Xenia: minor tweaks to bring up to date with winnt.h */
#include <cstdint>
#pragma once
/* Copyright (c) Microsoft Corporation. All rights reserved. */
/* NT image format (to be used when the Win32 SDK version of WINNT.H cannot) */

View File

@@ -1,6 +1,9 @@
#include <utility>
#include <vector>
#ifndef XENIA_UI_RESOURCES_H_
#define XENIA_UI_RESOURCES_H_
static constexpr uint8_t player_one_notification_icon[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc8,
@@ -4612,3 +4615,5 @@ static const std::vector<std::pair<const uint8_t*, uint32_t>>
static constexpr std::pair<const uint8_t*, uint32_t> locked_achievement_icon = {
locked_achievement_icon_data, locked_achievement_icon_len};
#endif // XENIA_UI_RESOURCES_H_