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,100 +1,45 @@
#pragma once
#define dsRoomCarpetTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomCarpetTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomCarpetTex[] = dsRoomCarpetTex;
#else
static const char sRoomCarpetTex[] __attribute__((aligned (2))) = dsRoomCarpetTex;
#endif
#define dsRoomOrganPipeTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganPipeTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomOrganPipeTex[] = dsRoomOrganPipeTex;
#else
static const char sRoomOrganPipeTex[] __attribute__((aligned (2))) = dsRoomOrganPipeTex;
#endif
#define dsRoomOrganCorbelsTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganCorbelsTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomOrganCorbelsTex[] = dsRoomOrganCorbelsTex;
#else
static const char sRoomOrganCorbelsTex[] __attribute__((aligned (2))) = dsRoomOrganCorbelsTex;
#endif
#define dsRoomOrganGrillTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganGrillTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomOrganGrillTex[] = dsRoomOrganGrillTex;
#else
static const char sRoomOrganGrillTex[] __attribute__((aligned (2))) = dsRoomOrganGrillTex;
#endif
#define dsRoomCrestFriezeTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomCrestFriezeTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomCrestFriezeTex[] = dsRoomCrestFriezeTex;
#else
static const char sRoomCrestFriezeTex[] __attribute__((aligned (2))) = dsRoomCrestFriezeTex;
#endif
#define dsRoomColumnFriezeAndCanopyTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomColumnFriezeAndCanopyTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomColumnFriezeAndCanopyTex[] = dsRoomColumnFriezeAndCanopyTex;
#else
static const char sRoomColumnFriezeAndCanopyTex[] __attribute__((aligned (2))) = dsRoomColumnFriezeAndCanopyTex;
#endif
#define dsRoomColumnMetalEdgingTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomColumnMetalEdgingTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomColumnMetalEdgingTex[] = dsRoomColumnMetalEdgingTex;
#else
static const char sRoomColumnMetalEdgingTex[] __attribute__((aligned (2))) = dsRoomColumnMetalEdgingTex;
#endif
#define dsRoomStatueWingTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStatueWingTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomStatueWingTex[] = dsRoomStatueWingTex;
#else
static const char sRoomStatueWingTex[] __attribute__((aligned (2))) = dsRoomStatueWingTex;
#endif
#define dsRoomPillarTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomPillarTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomPillarTex[] = dsRoomPillarTex;
#else
static const char sRoomPillarTex[] __attribute__((aligned (2))) = dsRoomPillarTex;
#endif
#define dsRoomOrganKeyboardTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganKeyboardTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomOrganKeyboardTex[] = dsRoomOrganKeyboardTex;
#else
static const char sRoomOrganKeyboardTex[] __attribute__((aligned (2))) = dsRoomOrganKeyboardTex;
#endif
#define dsRoomOrganKeyEndTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganKeyEndTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomOrganKeyEndTex[] = dsRoomOrganKeyEndTex;
#else
static const char sRoomOrganKeyEndTex[] __attribute__((aligned (2))) = dsRoomOrganKeyEndTex;
#endif
#define dsRoomStepTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStepTex"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomStepTex[] = dsRoomStepTex;
#else
static const char sRoomStepTex[] __attribute__((aligned (2))) = dsRoomStepTex;
#endif
#define dsRoomOrganAndFloorDL "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganAndFloorDL"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomOrganAndFloorDL[] = dsRoomOrganAndFloorDL;
#else
static const char sRoomOrganAndFloorDL[] __attribute__((aligned (2))) = dsRoomOrganAndFloorDL;
#endif
#define dsRoomStatuesDL "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStatuesDL"
#ifdef _WIN32
static const __declspec(align(2)) char sRoomStatuesDL[] = dsRoomStatuesDL;
#else
static const char sRoomStatuesDL[] __attribute__((aligned (2))) = dsRoomStatuesDL;
#endif
#include "align_asset_macro.h"
#define dsRoomCarpetTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomCarpetTex"
static const ALIGN_ASSET(2) char sRoomCarpetTex[] = dsRoomCarpetTex;
#define dsRoomOrganPipeTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganPipeTex"
static const ALIGN_ASSET(2) char sRoomOrganPipeTex[] = dsRoomOrganPipeTex;
#define dsRoomOrganCorbelsTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganCorbelsTex"
static const ALIGN_ASSET(2) char sRoomOrganCorbelsTex[] = dsRoomOrganCorbelsTex;
#define dsRoomOrganGrillTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganGrillTex"
static const ALIGN_ASSET(2) char sRoomOrganGrillTex[] = dsRoomOrganGrillTex;
#define dsRoomCrestFriezeTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomCrestFriezeTex"
static const ALIGN_ASSET(2) char sRoomCrestFriezeTex[] = dsRoomCrestFriezeTex;
#define dsRoomColumnFriezeAndCanopyTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomColumnFriezeAndCanopyTex"
static const ALIGN_ASSET(2) char sRoomColumnFriezeAndCanopyTex[] = dsRoomColumnFriezeAndCanopyTex;
#define dsRoomColumnMetalEdgingTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomColumnMetalEdgingTex"
static const ALIGN_ASSET(2) char sRoomColumnMetalEdgingTex[] = dsRoomColumnMetalEdgingTex;
#define dsRoomStatueWingTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStatueWingTex"
static const ALIGN_ASSET(2) char sRoomStatueWingTex[] = dsRoomStatueWingTex;
#define dsRoomPillarTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomPillarTex"
static const ALIGN_ASSET(2) char sRoomPillarTex[] = dsRoomPillarTex;
#define dsRoomOrganKeyboardTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganKeyboardTex"
static const ALIGN_ASSET(2) char sRoomOrganKeyboardTex[] = dsRoomOrganKeyboardTex;
#define dsRoomOrganKeyEndTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganKeyEndTex"
static const ALIGN_ASSET(2) char sRoomOrganKeyEndTex[] = dsRoomOrganKeyEndTex;
#define dsRoomStepTex "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStepTex"
static const ALIGN_ASSET(2) char sRoomStepTex[] = dsRoomStepTex;
#define dsRoomOrganAndFloorDL "__OTR__overlays/ovl_En_Ganon_Organ/sRoomOrganAndFloorDL"
static const ALIGN_ASSET(2) char sRoomOrganAndFloorDL[] = dsRoomOrganAndFloorDL;
#define dsRoomStatuesDL "__OTR__overlays/ovl_En_Ganon_Organ/sRoomStatuesDL"
static const ALIGN_ASSET(2) char sRoomStatuesDL[] = dsRoomStatuesDL;