Add missing include for stdint.h in overworld and snes_color headers

This commit is contained in:
scawful
2024-11-10 16:58:24 -05:00
parent e100423d58
commit 011fa65b4d
2 changed files with 6 additions and 4 deletions

View File

@@ -5,6 +5,8 @@
extern "C" {
#endif
#include <stdint.h>
typedef struct z3_overworld z3_overworld;
typedef struct z3_overworld_map z3_overworld_map;
@@ -29,4 +31,4 @@ struct z3_overworld {
}
#endif
#endif // YAZE_OVERWORLD_H
#endif // YAZE_OVERWORLD_H

View File

@@ -1,12 +1,12 @@
#ifndef YAZE_BASE_SNES_COLOR_H_
#define YAZE_BASE_SNES_COLOR_H_
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
/**
* @brief Primitive of 16-bit RGB SNES color.
*/
@@ -29,4 +29,4 @@ typedef struct snes_palette {
}
#endif
#endif // YAZE_BASE_SNES_COLOR_H_
#endif // YAZE_BASE_SNES_COLOR_H_