aboutsummaryrefslogtreecommitdiffstats
path: root/src/assets.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets.h')
-rw-r--r--src/assets.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/assets.h b/src/assets.h
index c5fb7ac..43c4b43 100644
--- a/src/assets.h
+++ b/src/assets.h
@@ -9,7 +9,7 @@
extern const char imageAssetPaths[IMAGE_ASSET_COUNT][FT_NAMEMAX];
extern const char textureAssetPaths[TEXTURE_ASSET_COUNT][FT_NAMEMAX];
-typedef int8_t Assetid;
+typedef int8_t AssetId;
// Image asset ids.
enum {
@@ -21,7 +21,7 @@ enum {
HEIGHT_MAP_TEXTURE
};
-typedef struct Assets {
+typedef struct {
Image images[IMAGE_ASSET_COUNT];
Texture textures[TEXTURE_ASSET_COUNT];
} Assets;