Simplify Asset Headers (#2474)

This commit is contained in:
Amaro Martínez
2023-03-02 09:37:47 -05:00
committed by GitHub
parent 21466192e5
commit d3f864cea9
1075 changed files with 60897 additions and 139767 deletions

View File

@@ -1,44 +1,21 @@
#pragma once
#define dgShopDungenWoodenShelvesDL "__OTR__objects/object_shop_dungen/gShopDungenWoodenShelvesDL"
#ifdef _WIN32
static const __declspec(align(2)) char gShopDungenWoodenShelvesDL[] = dgShopDungenWoodenShelvesDL;
#else
static const char gShopDungenWoodenShelvesDL[] __attribute__((aligned (2))) = dgShopDungenWoodenShelvesDL;
#endif
#define dgShopDungenStoneTLUT "__OTR__objects/object_shop_dungen/gShopDungenStoneTLUT"
#ifdef _WIN32
static const __declspec(align(2)) char gShopDungenStoneTLUT[] = dgShopDungenStoneTLUT;
#else
static const char gShopDungenStoneTLUT[] __attribute__((aligned (2))) = dgShopDungenStoneTLUT;
#endif
#define dgShopDungenStone1Tex "__OTR__objects/object_shop_dungen/gShopDungenStone1Tex"
#ifdef _WIN32
static const __declspec(align(2)) char gShopDungenStone1Tex[] = dgShopDungenStone1Tex;
#else
static const char gShopDungenStone1Tex[] __attribute__((aligned (2))) = dgShopDungenStone1Tex;
#endif
#define dgShopDungenStone2Tex "__OTR__objects/object_shop_dungen/gShopDungenStone2Tex"
#ifdef _WIN32
static const __declspec(align(2)) char gShopDungenStone2Tex[] = dgShopDungenStone2Tex;
#else
static const char gShopDungenStone2Tex[] __attribute__((aligned (2))) = dgShopDungenStone2Tex;
#endif
#define dgShopDungenStoneShelvesDL "__OTR__objects/object_shop_dungen/gShopDungenStoneShelvesDL"
#ifdef _WIN32
static const __declspec(align(2)) char gShopDungenStoneShelvesDL[] = dgShopDungenStoneShelvesDL;
#else
static const char gShopDungenStoneShelvesDL[] __attribute__((aligned (2))) = dgShopDungenStoneShelvesDL;
#endif
#define dgShopDungenWoodPlankTex "__OTR__objects/object_shop_dungen/gShopDungenWoodPlankTex"
#ifdef _WIN32
static const __declspec(align(2)) char gShopDungenWoodPlankTex[] = dgShopDungenWoodPlankTex;
#else
static const char gShopDungenWoodPlankTex[] __attribute__((aligned (2))) = dgShopDungenWoodPlankTex;
#endif
#include "align_asset_macro.h"
#define dgShopDungenWoodenShelvesDL "__OTR__objects/object_shop_dungen/gShopDungenWoodenShelvesDL"
static const ALIGN_ASSET(2) char gShopDungenWoodenShelvesDL[] = dgShopDungenWoodenShelvesDL;
#define dgShopDungenStoneTLUT "__OTR__objects/object_shop_dungen/gShopDungenStoneTLUT"
static const ALIGN_ASSET(2) char gShopDungenStoneTLUT[] = dgShopDungenStoneTLUT;
#define dgShopDungenStone1Tex "__OTR__objects/object_shop_dungen/gShopDungenStone1Tex"
static const ALIGN_ASSET(2) char gShopDungenStone1Tex[] = dgShopDungenStone1Tex;
#define dgShopDungenStone2Tex "__OTR__objects/object_shop_dungen/gShopDungenStone2Tex"
static const ALIGN_ASSET(2) char gShopDungenStone2Tex[] = dgShopDungenStone2Tex;
#define dgShopDungenStoneShelvesDL "__OTR__objects/object_shop_dungen/gShopDungenStoneShelvesDL"
static const ALIGN_ASSET(2) char gShopDungenStoneShelvesDL[] = dgShopDungenStoneShelvesDL;
#define dgShopDungenWoodPlankTex "__OTR__objects/object_shop_dungen/gShopDungenWoodPlankTex"
static const ALIGN_ASSET(2) char gShopDungenWoodPlankTex[] = dgShopDungenWoodPlankTex;