Simplify Asset Headers (#2474)
This commit is contained in:
@@ -1,37 +1,18 @@
|
||||
#pragma once
|
||||
#define ds1Tex "__OTR__overlays/ovl_Arrow_Fire/s1Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char s1Tex[] = ds1Tex;
|
||||
#else
|
||||
static const char s1Tex[] __attribute__((aligned (2))) = ds1Tex;
|
||||
#endif
|
||||
|
||||
#define ds2Tex "__OTR__overlays/ovl_Arrow_Fire/s2Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char s2Tex[] = ds2Tex;
|
||||
#else
|
||||
static const char s2Tex[] __attribute__((aligned (2))) = ds2Tex;
|
||||
#endif
|
||||
|
||||
#define dsVtx "__OTR__overlays/ovl_Arrow_Fire/sVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sVtx[] = dsVtx;
|
||||
#else
|
||||
static const char sVtx[] __attribute__((aligned (2))) = dsVtx;
|
||||
#endif
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Fire/sMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL;
|
||||
#else
|
||||
static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsModelDL "__OTR__overlays/ovl_Arrow_Fire/sModelDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sModelDL[] = dsModelDL;
|
||||
#else
|
||||
static const char sModelDL[] __attribute__((aligned (2))) = dsModelDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define ds1Tex "__OTR__overlays/ovl_Arrow_Fire/s1Tex"
|
||||
static const ALIGN_ASSET(2) char s1Tex[] = ds1Tex;
|
||||
|
||||
#define ds2Tex "__OTR__overlays/ovl_Arrow_Fire/s2Tex"
|
||||
static const ALIGN_ASSET(2) char s2Tex[] = ds2Tex;
|
||||
|
||||
#define dsVtx "__OTR__overlays/ovl_Arrow_Fire/sVtx"
|
||||
static const ALIGN_ASSET(2) char sVtx[] = dsVtx;
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Fire/sMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL;
|
||||
|
||||
#define dsModelDL "__OTR__overlays/ovl_Arrow_Fire/sModelDL"
|
||||
static const ALIGN_ASSET(2) char sModelDL[] = dsModelDL;
|
||||
@@ -1,37 +1,18 @@
|
||||
#pragma once
|
||||
#define ds1Tex "__OTR__overlays/ovl_Arrow_Ice/s1Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char s1Tex[] = ds1Tex;
|
||||
#else
|
||||
static const char s1Tex[] __attribute__((aligned (2))) = ds1Tex;
|
||||
#endif
|
||||
|
||||
#define ds2Tex "__OTR__overlays/ovl_Arrow_Ice/s2Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char s2Tex[] = ds2Tex;
|
||||
#else
|
||||
static const char s2Tex[] __attribute__((aligned (2))) = ds2Tex;
|
||||
#endif
|
||||
|
||||
#define dsVtx "__OTR__overlays/ovl_Arrow_Ice/sVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sVtx[] = dsVtx;
|
||||
#else
|
||||
static const char sVtx[] __attribute__((aligned (2))) = dsVtx;
|
||||
#endif
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Ice/sMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL;
|
||||
#else
|
||||
static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsModelDL "__OTR__overlays/ovl_Arrow_Ice/sModelDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sModelDL[] = dsModelDL;
|
||||
#else
|
||||
static const char sModelDL[] __attribute__((aligned (2))) = dsModelDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define ds1Tex "__OTR__overlays/ovl_Arrow_Ice/s1Tex"
|
||||
static const ALIGN_ASSET(2) char s1Tex[] = ds1Tex;
|
||||
|
||||
#define ds2Tex "__OTR__overlays/ovl_Arrow_Ice/s2Tex"
|
||||
static const ALIGN_ASSET(2) char s2Tex[] = ds2Tex;
|
||||
|
||||
#define dsVtx "__OTR__overlays/ovl_Arrow_Ice/sVtx"
|
||||
static const ALIGN_ASSET(2) char sVtx[] = dsVtx;
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Ice/sMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL;
|
||||
|
||||
#define dsModelDL "__OTR__overlays/ovl_Arrow_Ice/sModelDL"
|
||||
static const ALIGN_ASSET(2) char sModelDL[] = dsModelDL;
|
||||
@@ -1,37 +1,18 @@
|
||||
#pragma once
|
||||
#define ds1Tex "__OTR__overlays/ovl_Arrow_Light/s1Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char s1Tex[] = ds1Tex;
|
||||
#else
|
||||
static const char s1Tex[] __attribute__((aligned (2))) = ds1Tex;
|
||||
#endif
|
||||
|
||||
#define ds2Tex "__OTR__overlays/ovl_Arrow_Light/s2Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char s2Tex[] = ds2Tex;
|
||||
#else
|
||||
static const char s2Tex[] __attribute__((aligned (2))) = ds2Tex;
|
||||
#endif
|
||||
|
||||
#define dsVtx "__OTR__overlays/ovl_Arrow_Light/sVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sVtx[] = dsVtx;
|
||||
#else
|
||||
static const char sVtx[] __attribute__((aligned (2))) = dsVtx;
|
||||
#endif
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Light/sMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL;
|
||||
#else
|
||||
static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsModelDL "__OTR__overlays/ovl_Arrow_Light/sModelDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sModelDL[] = dsModelDL;
|
||||
#else
|
||||
static const char sModelDL[] __attribute__((aligned (2))) = dsModelDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define ds1Tex "__OTR__overlays/ovl_Arrow_Light/s1Tex"
|
||||
static const ALIGN_ASSET(2) char s1Tex[] = ds1Tex;
|
||||
|
||||
#define ds2Tex "__OTR__overlays/ovl_Arrow_Light/s2Tex"
|
||||
static const ALIGN_ASSET(2) char s2Tex[] = ds2Tex;
|
||||
|
||||
#define dsVtx "__OTR__overlays/ovl_Arrow_Light/sVtx"
|
||||
static const ALIGN_ASSET(2) char sVtx[] = dsVtx;
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Arrow_Light/sMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL;
|
||||
|
||||
#define dsModelDL "__OTR__overlays/ovl_Arrow_Light/sModelDL"
|
||||
static const ALIGN_ASSET(2) char sModelDL[] = dsModelDL;
|
||||
@@ -1,86 +1,39 @@
|
||||
#pragma once
|
||||
#define dsPlatformTex "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPlatformTex[] = dsPlatformTex;
|
||||
#else
|
||||
static const char sPlatformTex[] __attribute__((aligned (2))) = dsPlatformTex;
|
||||
#endif
|
||||
|
||||
#define dsPlatformTopVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTopVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPlatformTopVtx[] = dsPlatformTopVtx;
|
||||
#else
|
||||
static const char sPlatformTopVtx[] __attribute__((aligned (2))) = dsPlatformTopVtx;
|
||||
#endif
|
||||
|
||||
#define dsPlatformMaterialDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPlatformMaterialDL[] = dsPlatformMaterialDL;
|
||||
#else
|
||||
static const char sPlatformMaterialDL[] __attribute__((aligned (2))) = dsPlatformMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsPlatformTopDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTopDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPlatformTopDL[] = dsPlatformTopDL;
|
||||
#else
|
||||
static const char sPlatformTopDL[] __attribute__((aligned (2))) = dsPlatformTopDL;
|
||||
#endif
|
||||
|
||||
#define dsPlatformBottomVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformBottomVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPlatformBottomVtx[] = dsPlatformBottomVtx;
|
||||
#else
|
||||
static const char sPlatformBottomVtx[] __attribute__((aligned (2))) = dsPlatformBottomVtx;
|
||||
#endif
|
||||
|
||||
#define dsPlatformBottomDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformBottomDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPlatformBottomDL[] = dsPlatformBottomDL;
|
||||
#else
|
||||
static const char sPlatformBottomDL[] __attribute__((aligned (2))) = dsPlatformBottomDL;
|
||||
#endif
|
||||
|
||||
#define dsPlatformSideVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformSideVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPlatformSideVtx[] = dsPlatformSideVtx;
|
||||
#else
|
||||
static const char sPlatformSideVtx[] __attribute__((aligned (2))) = dsPlatformSideVtx;
|
||||
#endif
|
||||
|
||||
#define dsPlatformSideDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformSideDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPlatformSideDL[] = dsPlatformSideDL;
|
||||
#else
|
||||
static const char sPlatformSideDL[] __attribute__((aligned (2))) = dsPlatformSideDL;
|
||||
#endif
|
||||
|
||||
#define dsFlashTex "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sFlashTex[] = dsFlashTex;
|
||||
#else
|
||||
static const char sFlashTex[] __attribute__((aligned (2))) = dsFlashTex;
|
||||
#endif
|
||||
|
||||
#define dsFlashVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sFlashVtx[] = dsFlashVtx;
|
||||
#else
|
||||
static const char sFlashVtx[] __attribute__((aligned (2))) = dsFlashVtx;
|
||||
#endif
|
||||
|
||||
#define dsFlashDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sFlashDL[] = dsFlashDL;
|
||||
#else
|
||||
static const char sFlashDL[] __attribute__((aligned (2))) = dsFlashDL;
|
||||
#endif
|
||||
|
||||
#define dsCol "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sCol"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCol[] = dsCol;
|
||||
#else
|
||||
static const char sCol[] __attribute__((aligned (2))) = dsCol;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsPlatformTex "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTex"
|
||||
static const ALIGN_ASSET(2) char sPlatformTex[] = dsPlatformTex;
|
||||
|
||||
#define dsPlatformTopVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTopVtx"
|
||||
static const ALIGN_ASSET(2) char sPlatformTopVtx[] = dsPlatformTopVtx;
|
||||
|
||||
#define dsPlatformMaterialDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sPlatformMaterialDL[] = dsPlatformMaterialDL;
|
||||
|
||||
#define dsPlatformTopDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformTopDL"
|
||||
static const ALIGN_ASSET(2) char sPlatformTopDL[] = dsPlatformTopDL;
|
||||
|
||||
#define dsPlatformBottomVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformBottomVtx"
|
||||
static const ALIGN_ASSET(2) char sPlatformBottomVtx[] = dsPlatformBottomVtx;
|
||||
|
||||
#define dsPlatformBottomDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformBottomDL"
|
||||
static const ALIGN_ASSET(2) char sPlatformBottomDL[] = dsPlatformBottomDL;
|
||||
|
||||
#define dsPlatformSideVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformSideVtx"
|
||||
static const ALIGN_ASSET(2) char sPlatformSideVtx[] = dsPlatformSideVtx;
|
||||
|
||||
#define dsPlatformSideDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sPlatformSideDL"
|
||||
static const ALIGN_ASSET(2) char sPlatformSideDL[] = dsPlatformSideDL;
|
||||
|
||||
#define dsFlashTex "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashTex"
|
||||
static const ALIGN_ASSET(2) char sFlashTex[] = dsFlashTex;
|
||||
|
||||
#define dsFlashVtx "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashVtx"
|
||||
static const ALIGN_ASSET(2) char sFlashVtx[] = dsFlashVtx;
|
||||
|
||||
#define dsFlashDL "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sFlashDL"
|
||||
static const ALIGN_ASSET(2) char sFlashDL[] = dsFlashDL;
|
||||
|
||||
#define dsCol "__OTR__overlays/ovl_Bg_Ganon_Otyuka/sCol"
|
||||
static const ALIGN_ASSET(2) char sCol[] = dsCol;
|
||||
@@ -1,16 +1,9 @@
|
||||
#pragma once
|
||||
#define dsShadowVtx "__OTR__overlays/ovl_Bg_Jya_Cobra/sShadowVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sShadowVtx[] = dsShadowVtx;
|
||||
#else
|
||||
static const char sShadowVtx[] __attribute__((aligned (2))) = dsShadowVtx;
|
||||
#endif
|
||||
|
||||
#define dsShadowDL "__OTR__overlays/ovl_Bg_Jya_Cobra/sShadowDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sShadowDL[] = dsShadowDL;
|
||||
#else
|
||||
static const char sShadowDL[] __attribute__((aligned (2))) = dsShadowDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsShadowVtx "__OTR__overlays/ovl_Bg_Jya_Cobra/sShadowVtx"
|
||||
static const ALIGN_ASSET(2) char sShadowVtx[] = dsShadowVtx;
|
||||
|
||||
#define dsShadowDL "__OTR__overlays/ovl_Bg_Jya_Cobra/sShadowDL"
|
||||
static const ALIGN_ASSET(2) char sShadowDL[] = dsShadowDL;
|
||||
@@ -1,16 +1,9 @@
|
||||
#pragma once
|
||||
#define dsLavaFloorLavaTex "__OTR__overlays/ovl_Boss_Dodongo/sLavaFloorLavaTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sLavaFloorLavaTex[] = dsLavaFloorLavaTex;
|
||||
#else
|
||||
static const char sLavaFloorLavaTex[] __attribute__((aligned (2))) = dsLavaFloorLavaTex;
|
||||
#endif
|
||||
|
||||
#define dsLavaFloorRockTex "__OTR__overlays/ovl_Boss_Dodongo/sLavaFloorRockTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sLavaFloorRockTex[] = dsLavaFloorRockTex;
|
||||
#else
|
||||
static const char sLavaFloorRockTex[] __attribute__((aligned (2))) = dsLavaFloorRockTex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsLavaFloorLavaTex "__OTR__overlays/ovl_Boss_Dodongo/sLavaFloorLavaTex"
|
||||
static const ALIGN_ASSET(2) char sLavaFloorLavaTex[] = dsLavaFloorLavaTex;
|
||||
|
||||
#define dsLavaFloorRockTex "__OTR__overlays/ovl_Boss_Dodongo/sLavaFloorRockTex"
|
||||
static const ALIGN_ASSET(2) char sLavaFloorRockTex[] = dsLavaFloorRockTex;
|
||||
@@ -1,429 +1,186 @@
|
||||
#pragma once
|
||||
#define dgGanondorfLightning1Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning1Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning1Tex[] = dgGanondorfLightning1Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning1Tex[] __attribute__((aligned (2))) = dgGanondorfLightning1Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightning2Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning2Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning2Tex[] = dgGanondorfLightning2Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning2Tex[] __attribute__((aligned (2))) = dgGanondorfLightning2Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightning3Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning3Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning3Tex[] = dgGanondorfLightning3Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning3Tex[] __attribute__((aligned (2))) = dgGanondorfLightning3Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightning4Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning4Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning4Tex[] = dgGanondorfLightning4Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning4Tex[] __attribute__((aligned (2))) = dgGanondorfLightning4Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightning5Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning5Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning5Tex[] = dgGanondorfLightning5Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning5Tex[] __attribute__((aligned (2))) = dgGanondorfLightning5Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightning6Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning6Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning6Tex[] = dgGanondorfLightning6Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning6Tex[] __attribute__((aligned (2))) = dgGanondorfLightning6Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightning7Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning7Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning7Tex[] = dgGanondorfLightning7Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning7Tex[] __attribute__((aligned (2))) = dgGanondorfLightning7Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightning8Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning8Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning8Tex[] = dgGanondorfLightning8Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning8Tex[] __attribute__((aligned (2))) = dgGanondorfLightning8Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightning9Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning9Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning9Tex[] = dgGanondorfLightning9Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning9Tex[] __attribute__((aligned (2))) = dgGanondorfLightning9Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightning10Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning10Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning10Tex[] = dgGanondorfLightning10Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning10Tex[] __attribute__((aligned (2))) = dgGanondorfLightning10Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightning11Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning11Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning11Tex[] = dgGanondorfLightning11Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning11Tex[] __attribute__((aligned (2))) = dgGanondorfLightning11Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightning12Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning12Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightning12Tex[] = dgGanondorfLightning12Tex;
|
||||
#else
|
||||
static const char gGanondorfLightning12Tex[] __attribute__((aligned (2))) = dgGanondorfLightning12Tex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfWindowShatterTemplateTex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShatterTemplateTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfWindowShatterTemplateTex[] = dgGanondorfWindowShatterTemplateTex;
|
||||
#else
|
||||
static const char gGanondorfWindowShatterTemplateTex[] __attribute__((aligned (2))) = dgGanondorfWindowShatterTemplateTex;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak1DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak1DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak1DL[] = dgGanondorfLightStreak1DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak1DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak1DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak2DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak2DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak2DL[] = dgGanondorfLightStreak2DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak2DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak2DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak3DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak3DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak3DL[] = dgGanondorfLightStreak3DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak3DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak3DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak4DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak4DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak4DL[] = dgGanondorfLightStreak4DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak4DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak4DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak5DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak5DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak5DL[] = dgGanondorfLightStreak5DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak5DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak5DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak6DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak6DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak6DL[] = dgGanondorfLightStreak6DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak6DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak6DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak7DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak7DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak7DL[] = dgGanondorfLightStreak7DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak7DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak7DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak8DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak8DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak8DL[] = dgGanondorfLightStreak8DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak8DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak8DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak9DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak9DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak9DL[] = dgGanondorfLightStreak9DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak9DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak9DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak10DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak10DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak10DL[] = dgGanondorfLightStreak10DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak10DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak10DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak11DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak11DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak11DL[] = dgGanondorfLightStreak11DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak11DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak11DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightStreak12DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak12DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightStreak12DL[] = dgGanondorfLightStreak12DL;
|
||||
#else
|
||||
static const char gGanondorfLightStreak12DL[] __attribute__((aligned (2))) = dgGanondorfLightStreak12DL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfShadowSetupDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShadowSetupDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfShadowSetupDL[] = dgGanondorfShadowSetupDL;
|
||||
#else
|
||||
static const char gGanondorfShadowSetupDL[] __attribute__((aligned (2))) = dgGanondorfShadowSetupDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfShadowModelDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShadowModelDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfShadowModelDL[] = dgGanondorfShadowModelDL;
|
||||
#else
|
||||
static const char gGanondorfShadowModelDL[] __attribute__((aligned (2))) = dgGanondorfShadowModelDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfTriforceDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfTriforceDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfTriforceDL[] = dgGanondorfTriforceDL;
|
||||
#else
|
||||
static const char gGanondorfTriforceDL[] __attribute__((aligned (2))) = dgGanondorfTriforceDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfWindowShardMaterialDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShardMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfWindowShardMaterialDL[] = dgGanondorfWindowShardMaterialDL;
|
||||
#else
|
||||
static const char gGanondorfWindowShardMaterialDL[] __attribute__((aligned (2))) = dgGanondorfWindowShardMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfWindowShardModelDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShardModelDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfWindowShardModelDL[] = dgGanondorfWindowShardModelDL;
|
||||
#else
|
||||
static const char gGanondorfWindowShardModelDL[] __attribute__((aligned (2))) = dgGanondorfWindowShardModelDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightBallMaterialDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightBallMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightBallMaterialDL[] = dgGanondorfLightBallMaterialDL;
|
||||
#else
|
||||
static const char gGanondorfLightBallMaterialDL[] __attribute__((aligned (2))) = dgGanondorfLightBallMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfSquareDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfSquareDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfSquareDL[] = dgGanondorfSquareDL;
|
||||
#else
|
||||
static const char gGanondorfSquareDL[] __attribute__((aligned (2))) = dgGanondorfSquareDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightningDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightningDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightningDL[] = dgGanondorfLightningDL;
|
||||
#else
|
||||
static const char gGanondorfLightningDL[] __attribute__((aligned (2))) = dgGanondorfLightningDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfUnusedDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfUnusedDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfUnusedDL[] = dgGanondorfUnusedDL;
|
||||
#else
|
||||
static const char gGanondorfUnusedDL[] __attribute__((aligned (2))) = dgGanondorfUnusedDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightRayTriDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightRayTriDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightRayTriDL[] = dgGanondorfLightRayTriDL;
|
||||
#else
|
||||
static const char gGanondorfLightRayTriDL[] __attribute__((aligned (2))) = dgGanondorfLightRayTriDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightFlecksDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightFlecksDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightFlecksDL[] = dgGanondorfLightFlecksDL;
|
||||
#else
|
||||
static const char gGanondorfLightFlecksDL[] __attribute__((aligned (2))) = dgGanondorfLightFlecksDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfBigMagicBGCircleDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfBigMagicBGCircleDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfBigMagicBGCircleDL[] = dgGanondorfBigMagicBGCircleDL;
|
||||
#else
|
||||
static const char gGanondorfBigMagicBGCircleDL[] __attribute__((aligned (2))) = dgGanondorfBigMagicBGCircleDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfDotDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfDotDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfDotDL[] = dgGanondorfDotDL;
|
||||
#else
|
||||
static const char gGanondorfDotDL[] __attribute__((aligned (2))) = dgGanondorfDotDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfShockwaveDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockwaveDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfShockwaveDL[] = dgGanondorfShockwaveDL;
|
||||
#else
|
||||
static const char gGanondorfShockwaveDL[] __attribute__((aligned (2))) = dgGanondorfShockwaveDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfImpactDarkDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfImpactDarkDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfImpactDarkDL[] = dgGanondorfImpactDarkDL;
|
||||
#else
|
||||
static const char gGanondorfImpactDarkDL[] __attribute__((aligned (2))) = dgGanondorfImpactDarkDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfImpactLightDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfImpactLightDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfImpactLightDL[] = dgGanondorfImpactLightDL;
|
||||
#else
|
||||
static const char gGanondorfImpactLightDL[] __attribute__((aligned (2))) = dgGanondorfImpactLightDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfShockGlowDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockGlowDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfShockGlowDL[] = dgGanondorfShockGlowDL;
|
||||
#else
|
||||
static const char gGanondorfShockGlowDL[] __attribute__((aligned (2))) = dgGanondorfShockGlowDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfLightCoreDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightCoreDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfLightCoreDL[] = dgGanondorfLightCoreDL;
|
||||
#else
|
||||
static const char gGanondorfLightCoreDL[] __attribute__((aligned (2))) = dgGanondorfLightCoreDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfShockDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfShockDL[] = dgGanondorfShockDL;
|
||||
#else
|
||||
static const char gGanondorfShockDL[] __attribute__((aligned (2))) = dgGanondorfShockDL;
|
||||
#endif
|
||||
|
||||
#define dgGanondorfVortexDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfVortexDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanondorfVortexDL[] = dgGanondorfVortexDL;
|
||||
#else
|
||||
static const char gGanondorfVortexDL[] __attribute__((aligned (2))) = dgGanondorfVortexDL;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_01EF90 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01EF90"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_01EF90[] = dovl_Boss_GanonTex_01EF90;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_01EF90[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01EF90;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_00E748 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_00E748"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_00E748[] = dovl_Boss_GanonTex_00E748;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_00E748[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_00E748;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_00F848 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_00F848"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_00F848[] = dovl_Boss_GanonTex_00F848;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_00F848[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_00F848;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTLUT_00F808 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTLUT_00F808"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTLUT_00F808[] = dovl_Boss_GanonTLUT_00F808;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTLUT_00F808[] __attribute__((aligned (2))) = dovl_Boss_GanonTLUT_00F808;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_010538 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_010538"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_010538[] = dovl_Boss_GanonTex_010538;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_010538[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_010538;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_01B7B0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01B7B0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_01B7B0[] = dovl_Boss_GanonTex_01B7B0;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_01B7B0[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01B7B0;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_01A7B0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01A7B0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_01A7B0[] = dovl_Boss_GanonTex_01A7B0;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_01A7B0[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01A7B0;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_01AFB0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01AFB0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_01AFB0[] = dovl_Boss_GanonTex_01AFB0;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_01AFB0[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01AFB0;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_01C420 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01C420"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_01C420[] = dovl_Boss_GanonTex_01C420;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_01C420[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01C420;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_01CEB8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01CEB8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_01CEB8[] = dovl_Boss_GanonTex_01CEB8;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_01CEB8[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01CEB8;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_01D6B8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01D6B8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_01D6B8[] = dovl_Boss_GanonTex_01D6B8;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_01D6B8[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01D6B8;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_01DE88 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01DE88"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_01DE88[] = dovl_Boss_GanonTex_01DE88;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_01DE88[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01DE88;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_01E688 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01E688"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_01E688[] = dovl_Boss_GanonTex_01E688;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_01E688[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01E688;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_01FFF8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01FFF8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_01FFF8[] = dovl_Boss_GanonTex_01FFF8;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_01FFF8[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_01FFF8;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_020370 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_020370"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_020370[] = dovl_Boss_GanonTex_020370;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_020370[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_020370;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_GanonTex_020770 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_020770"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_GanonTex_020770[] = dovl_Boss_GanonTex_020770;
|
||||
#else
|
||||
static const char ovl_Boss_GanonTex_020770[] __attribute__((aligned (2))) = dovl_Boss_GanonTex_020770;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgGanondorfLightning1Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning1Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning1Tex[] = dgGanondorfLightning1Tex;
|
||||
|
||||
#define dgGanondorfLightning2Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning2Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning2Tex[] = dgGanondorfLightning2Tex;
|
||||
|
||||
#define dgGanondorfLightning3Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning3Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning3Tex[] = dgGanondorfLightning3Tex;
|
||||
|
||||
#define dgGanondorfLightning4Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning4Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning4Tex[] = dgGanondorfLightning4Tex;
|
||||
|
||||
#define dgGanondorfLightning5Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning5Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning5Tex[] = dgGanondorfLightning5Tex;
|
||||
|
||||
#define dgGanondorfLightning6Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning6Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning6Tex[] = dgGanondorfLightning6Tex;
|
||||
|
||||
#define dgGanondorfLightning7Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning7Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning7Tex[] = dgGanondorfLightning7Tex;
|
||||
|
||||
#define dgGanondorfLightning8Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning8Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning8Tex[] = dgGanondorfLightning8Tex;
|
||||
|
||||
#define dgGanondorfLightning9Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning9Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning9Tex[] = dgGanondorfLightning9Tex;
|
||||
|
||||
#define dgGanondorfLightning10Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning10Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning10Tex[] = dgGanondorfLightning10Tex;
|
||||
|
||||
#define dgGanondorfLightning11Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning11Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning11Tex[] = dgGanondorfLightning11Tex;
|
||||
|
||||
#define dgGanondorfLightning12Tex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightning12Tex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightning12Tex[] = dgGanondorfLightning12Tex;
|
||||
|
||||
#define dgGanondorfWindowShatterTemplateTex "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShatterTemplateTex"
|
||||
static const ALIGN_ASSET(2) char gGanondorfWindowShatterTemplateTex[] = dgGanondorfWindowShatterTemplateTex;
|
||||
|
||||
#define dgGanondorfLightStreak1DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak1DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak1DL[] = dgGanondorfLightStreak1DL;
|
||||
|
||||
#define dgGanondorfLightStreak2DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak2DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak2DL[] = dgGanondorfLightStreak2DL;
|
||||
|
||||
#define dgGanondorfLightStreak3DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak3DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak3DL[] = dgGanondorfLightStreak3DL;
|
||||
|
||||
#define dgGanondorfLightStreak4DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak4DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak4DL[] = dgGanondorfLightStreak4DL;
|
||||
|
||||
#define dgGanondorfLightStreak5DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak5DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak5DL[] = dgGanondorfLightStreak5DL;
|
||||
|
||||
#define dgGanondorfLightStreak6DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak6DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak6DL[] = dgGanondorfLightStreak6DL;
|
||||
|
||||
#define dgGanondorfLightStreak7DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak7DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak7DL[] = dgGanondorfLightStreak7DL;
|
||||
|
||||
#define dgGanondorfLightStreak8DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak8DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak8DL[] = dgGanondorfLightStreak8DL;
|
||||
|
||||
#define dgGanondorfLightStreak9DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak9DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak9DL[] = dgGanondorfLightStreak9DL;
|
||||
|
||||
#define dgGanondorfLightStreak10DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak10DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak10DL[] = dgGanondorfLightStreak10DL;
|
||||
|
||||
#define dgGanondorfLightStreak11DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak11DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak11DL[] = dgGanondorfLightStreak11DL;
|
||||
|
||||
#define dgGanondorfLightStreak12DL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightStreak12DL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightStreak12DL[] = dgGanondorfLightStreak12DL;
|
||||
|
||||
#define dgGanondorfShadowSetupDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShadowSetupDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfShadowSetupDL[] = dgGanondorfShadowSetupDL;
|
||||
|
||||
#define dgGanondorfShadowModelDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShadowModelDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfShadowModelDL[] = dgGanondorfShadowModelDL;
|
||||
|
||||
#define dgGanondorfTriforceDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfTriforceDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfTriforceDL[] = dgGanondorfTriforceDL;
|
||||
|
||||
#define dgGanondorfWindowShardMaterialDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShardMaterialDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfWindowShardMaterialDL[] = dgGanondorfWindowShardMaterialDL;
|
||||
|
||||
#define dgGanondorfWindowShardModelDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfWindowShardModelDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfWindowShardModelDL[] = dgGanondorfWindowShardModelDL;
|
||||
|
||||
#define dgGanondorfLightBallMaterialDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightBallMaterialDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightBallMaterialDL[] = dgGanondorfLightBallMaterialDL;
|
||||
|
||||
#define dgGanondorfSquareDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfSquareDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfSquareDL[] = dgGanondorfSquareDL;
|
||||
|
||||
#define dgGanondorfLightningDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightningDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightningDL[] = dgGanondorfLightningDL;
|
||||
|
||||
#define dgGanondorfUnusedDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfUnusedDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfUnusedDL[] = dgGanondorfUnusedDL;
|
||||
|
||||
#define dgGanondorfLightRayTriDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightRayTriDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightRayTriDL[] = dgGanondorfLightRayTriDL;
|
||||
|
||||
#define dgGanondorfLightFlecksDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightFlecksDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightFlecksDL[] = dgGanondorfLightFlecksDL;
|
||||
|
||||
#define dgGanondorfBigMagicBGCircleDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfBigMagicBGCircleDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfBigMagicBGCircleDL[] = dgGanondorfBigMagicBGCircleDL;
|
||||
|
||||
#define dgGanondorfDotDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfDotDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfDotDL[] = dgGanondorfDotDL;
|
||||
|
||||
#define dgGanondorfShockwaveDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockwaveDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfShockwaveDL[] = dgGanondorfShockwaveDL;
|
||||
|
||||
#define dgGanondorfImpactDarkDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfImpactDarkDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfImpactDarkDL[] = dgGanondorfImpactDarkDL;
|
||||
|
||||
#define dgGanondorfImpactLightDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfImpactLightDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfImpactLightDL[] = dgGanondorfImpactLightDL;
|
||||
|
||||
#define dgGanondorfShockGlowDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockGlowDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfShockGlowDL[] = dgGanondorfShockGlowDL;
|
||||
|
||||
#define dgGanondorfLightCoreDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfLightCoreDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfLightCoreDL[] = dgGanondorfLightCoreDL;
|
||||
|
||||
#define dgGanondorfShockDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfShockDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfShockDL[] = dgGanondorfShockDL;
|
||||
|
||||
#define dgGanondorfVortexDL "__OTR__overlays/ovl_Boss_Ganon/gGanondorfVortexDL"
|
||||
static const ALIGN_ASSET(2) char gGanondorfVortexDL[] = dgGanondorfVortexDL;
|
||||
|
||||
#define dovl_Boss_GanonTex_01EF90 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01EF90"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01EF90[] = dovl_Boss_GanonTex_01EF90;
|
||||
|
||||
#define dovl_Boss_GanonTex_00E748 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_00E748"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_00E748[] = dovl_Boss_GanonTex_00E748;
|
||||
|
||||
#define dovl_Boss_GanonTex_00F848 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_00F848"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_00F848[] = dovl_Boss_GanonTex_00F848;
|
||||
|
||||
#define dovl_Boss_GanonTLUT_00F808 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTLUT_00F808"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTLUT_00F808[] = dovl_Boss_GanonTLUT_00F808;
|
||||
|
||||
#define dovl_Boss_GanonTex_010538 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_010538"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_010538[] = dovl_Boss_GanonTex_010538;
|
||||
|
||||
#define dovl_Boss_GanonTex_01B7B0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01B7B0"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01B7B0[] = dovl_Boss_GanonTex_01B7B0;
|
||||
|
||||
#define dovl_Boss_GanonTex_01A7B0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01A7B0"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01A7B0[] = dovl_Boss_GanonTex_01A7B0;
|
||||
|
||||
#define dovl_Boss_GanonTex_01AFB0 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01AFB0"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01AFB0[] = dovl_Boss_GanonTex_01AFB0;
|
||||
|
||||
#define dovl_Boss_GanonTex_01C420 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01C420"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01C420[] = dovl_Boss_GanonTex_01C420;
|
||||
|
||||
#define dovl_Boss_GanonTex_01CEB8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01CEB8"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01CEB8[] = dovl_Boss_GanonTex_01CEB8;
|
||||
|
||||
#define dovl_Boss_GanonTex_01D6B8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01D6B8"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01D6B8[] = dovl_Boss_GanonTex_01D6B8;
|
||||
|
||||
#define dovl_Boss_GanonTex_01DE88 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01DE88"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01DE88[] = dovl_Boss_GanonTex_01DE88;
|
||||
|
||||
#define dovl_Boss_GanonTex_01E688 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01E688"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01E688[] = dovl_Boss_GanonTex_01E688;
|
||||
|
||||
#define dovl_Boss_GanonTex_01FFF8 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_01FFF8"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_01FFF8[] = dovl_Boss_GanonTex_01FFF8;
|
||||
|
||||
#define dovl_Boss_GanonTex_020370 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_020370"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_020370[] = dovl_Boss_GanonTex_020370;
|
||||
|
||||
#define dovl_Boss_GanonTex_020770 "__OTR__overlays/ovl_Boss_Ganon/ovl_Boss_GanonTex_020770"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_GanonTex_020770[] = dovl_Boss_GanonTex_020770;
|
||||
@@ -1,268 +1,117 @@
|
||||
#pragma once
|
||||
#define dovl_Boss_Ganon2_Tex_00A2C8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00A2C8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00A2C8[] = dovl_Boss_Ganon2_Tex_00A2C8;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Tex_00A2C8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00A2C8;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00B2C8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00B2C8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00B2C8[] = dovl_Boss_Ganon2_Vtx_00B2C8;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00B2C8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00B2C8;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00B308 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B308"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00B308[] = dovl_Boss_Ganon2_DL_00B308;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_DL_00B308[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00B308;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00B378 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B378"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00B378[] = dovl_Boss_Ganon2_DL_00B378;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_DL_00B378[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00B378;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00B390 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00B390"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00B390[] = dovl_Boss_Ganon2_Vtx_00B390;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00B390[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00B390;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00B3D0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B3D0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00B3D0[] = dovl_Boss_Ganon2_DL_00B3D0;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_DL_00B3D0[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00B3D0;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00B3F0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B3F0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00B3F0[] = dovl_Boss_Ganon2_DL_00B3F0;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_DL_00B3F0[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00B3F0;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00B420 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00B420"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00B420[] = dovl_Boss_Ganon2_Tex_00B420;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Tex_00B420[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00B420;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00B820 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00B820"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00B820[] = dovl_Boss_Ganon2_Tex_00B820;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Tex_00B820[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00B820;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00BA20 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00BA20"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00BA20[] = dovl_Boss_Ganon2_Vtx_00BA20;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00BA20[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00BA20;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00BB80 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00BB80"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00BB80[] = dovl_Boss_Ganon2_DL_00BB80;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_DL_00BB80[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00BB80;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00BC98 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00BC98"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00BC98[] = dovl_Boss_Ganon2_Tex_00BC98;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Tex_00BC98[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00BC98;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00CC98 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00CC98"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00CC98[] = dovl_Boss_Ganon2_Vtx_00CC98;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00CC98[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00CC98;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00CCD8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00CCD8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00CCD8[] = dovl_Boss_Ganon2_DL_00CCD8;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_DL_00CCD8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00CCD8;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00CD58 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00CD58"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00CD58[] = dovl_Boss_Ganon2_Tex_00CD58;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Tex_00CD58[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00CD58;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00D758 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00D758"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00D758[] = dovl_Boss_Ganon2_Vtx_00D758;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00D758[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00D758;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00D798 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00D798"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00D798[] = dovl_Boss_Ganon2_DL_00D798;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_DL_00D798[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00D798;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00D820 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00D820"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00D820[] = dovl_Boss_Ganon2_Tex_00D820;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Tex_00D820[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00D820;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00E020 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00E020"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00E020[] = dovl_Boss_Ganon2_Vtx_00E020;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00E020[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00E020;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00E1C0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00E1C0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00E1C0[] = dovl_Boss_Ganon2_DL_00E1C0;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_DL_00E1C0[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00E1C0;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00E2E0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00E2E0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00E2E0[] = dovl_Boss_Ganon2_Tex_00E2E0;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Tex_00E2E0[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00E2E0;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00EAE0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00EAE0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00EAE0[] = dovl_Boss_Ganon2_Vtx_00EAE0;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00EAE0[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00EAE0;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00EC40 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00EC40"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00EC40[] = dovl_Boss_Ganon2_DL_00EC40;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_DL_00EC40[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00EC40;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00ED48 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00ED48"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00ED48[] = dovl_Boss_Ganon2_Tex_00ED48;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Tex_00ED48[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00ED48;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00F148 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00F148"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00F148[] = dovl_Boss_Ganon2_Vtx_00F148;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00F148[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00F148;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00F188 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00F188"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_00F188[] = dovl_Boss_Ganon2_DL_00F188;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_DL_00F188[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_00F188;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00F208 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00F208"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00F208[] = dovl_Boss_Ganon2_Tex_00F208;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Tex_00F208[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00F208;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00F408 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00F408"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Tex_00F408[] = dovl_Boss_Ganon2_Tex_00F408;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Tex_00F408[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Tex_00F408;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00FC08 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FC08"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00FC08[] = dovl_Boss_Ganon2_Vtx_00FC08;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00FC08[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00FC08;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00FC38 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FC38"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00FC38[] = dovl_Boss_Ganon2_Vtx_00FC38;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00FC38[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00FC38;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00FE38 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FE38"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00FE38[] = dovl_Boss_Ganon2_Vtx_00FE38;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00FE38[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00FE38;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00FF28 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FF28"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00FF28[] = dovl_Boss_Ganon2_Vtx_00FF28;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00FF28[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00FF28;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00FFD8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FFD8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_00FFD8[] = dovl_Boss_Ganon2_Vtx_00FFD8;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_00FFD8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_00FFD8;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_010038 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010038"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_010038[] = dovl_Boss_Ganon2_Vtx_010038;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_010038[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_010038;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_0100F8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_0100F8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_0100F8[] = dovl_Boss_Ganon2_Vtx_0100F8;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_0100F8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_0100F8;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_010198 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010198"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_010198[] = dovl_Boss_Ganon2_Vtx_010198;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_010198[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_010198;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_010298 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010298"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_Vtx_010298[] = dovl_Boss_Ganon2_Vtx_010298;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_Vtx_010298[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_Vtx_010298;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_0103A8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_0103A8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_Ganon2_DL_0103A8[] = dovl_Boss_Ganon2_DL_0103A8;
|
||||
#else
|
||||
static const char ovl_Boss_Ganon2_DL_0103A8[] __attribute__((aligned (2))) = dovl_Boss_Ganon2_DL_0103A8;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00A2C8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00A2C8"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00A2C8[] = dovl_Boss_Ganon2_Tex_00A2C8;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00B2C8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00B2C8"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00B2C8[] = dovl_Boss_Ganon2_Vtx_00B2C8;
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00B308 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B308"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00B308[] = dovl_Boss_Ganon2_DL_00B308;
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00B378 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B378"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00B378[] = dovl_Boss_Ganon2_DL_00B378;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00B390 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00B390"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00B390[] = dovl_Boss_Ganon2_Vtx_00B390;
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00B3D0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B3D0"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00B3D0[] = dovl_Boss_Ganon2_DL_00B3D0;
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00B3F0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00B3F0"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00B3F0[] = dovl_Boss_Ganon2_DL_00B3F0;
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00B420 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00B420"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00B420[] = dovl_Boss_Ganon2_Tex_00B420;
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00B820 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00B820"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00B820[] = dovl_Boss_Ganon2_Tex_00B820;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00BA20 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00BA20"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00BA20[] = dovl_Boss_Ganon2_Vtx_00BA20;
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00BB80 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00BB80"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00BB80[] = dovl_Boss_Ganon2_DL_00BB80;
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00BC98 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00BC98"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00BC98[] = dovl_Boss_Ganon2_Tex_00BC98;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00CC98 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00CC98"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00CC98[] = dovl_Boss_Ganon2_Vtx_00CC98;
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00CCD8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00CCD8"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00CCD8[] = dovl_Boss_Ganon2_DL_00CCD8;
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00CD58 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00CD58"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00CD58[] = dovl_Boss_Ganon2_Tex_00CD58;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00D758 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00D758"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00D758[] = dovl_Boss_Ganon2_Vtx_00D758;
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00D798 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00D798"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00D798[] = dovl_Boss_Ganon2_DL_00D798;
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00D820 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00D820"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00D820[] = dovl_Boss_Ganon2_Tex_00D820;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00E020 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00E020"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00E020[] = dovl_Boss_Ganon2_Vtx_00E020;
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00E1C0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00E1C0"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00E1C0[] = dovl_Boss_Ganon2_DL_00E1C0;
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00E2E0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00E2E0"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00E2E0[] = dovl_Boss_Ganon2_Tex_00E2E0;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00EAE0 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00EAE0"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00EAE0[] = dovl_Boss_Ganon2_Vtx_00EAE0;
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00EC40 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00EC40"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00EC40[] = dovl_Boss_Ganon2_DL_00EC40;
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00ED48 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00ED48"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00ED48[] = dovl_Boss_Ganon2_Tex_00ED48;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00F148 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00F148"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00F148[] = dovl_Boss_Ganon2_Vtx_00F148;
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_00F188 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_00F188"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_00F188[] = dovl_Boss_Ganon2_DL_00F188;
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00F208 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00F208"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00F208[] = dovl_Boss_Ganon2_Tex_00F208;
|
||||
|
||||
#define dovl_Boss_Ganon2_Tex_00F408 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Tex_00F408"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Tex_00F408[] = dovl_Boss_Ganon2_Tex_00F408;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00FC08 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FC08"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00FC08[] = dovl_Boss_Ganon2_Vtx_00FC08;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00FC38 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FC38"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00FC38[] = dovl_Boss_Ganon2_Vtx_00FC38;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00FE38 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FE38"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00FE38[] = dovl_Boss_Ganon2_Vtx_00FE38;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00FF28 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FF28"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00FF28[] = dovl_Boss_Ganon2_Vtx_00FF28;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_00FFD8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_00FFD8"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_00FFD8[] = dovl_Boss_Ganon2_Vtx_00FFD8;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_010038 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010038"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_010038[] = dovl_Boss_Ganon2_Vtx_010038;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_0100F8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_0100F8"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_0100F8[] = dovl_Boss_Ganon2_Vtx_0100F8;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_010198 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010198"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_010198[] = dovl_Boss_Ganon2_Vtx_010198;
|
||||
|
||||
#define dovl_Boss_Ganon2_Vtx_010298 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_Vtx_010298"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_Vtx_010298[] = dovl_Boss_Ganon2_Vtx_010298;
|
||||
|
||||
#define dovl_Boss_Ganon2_DL_0103A8 "__OTR__overlays/ovl_Boss_Ganon2/ovl_Boss_Ganon2_DL_0103A8"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_Ganon2_DL_0103A8[] = dovl_Boss_Ganon2_DL_0103A8;
|
||||
@@ -1,44 +1,21 @@
|
||||
#pragma once
|
||||
#define dsBodyStaticDList "__OTR__overlays/ovl_Boss_Sst/sBodyStaticDList"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sBodyStaticDList[] = dsBodyStaticDList;
|
||||
#else
|
||||
static const char sBodyStaticDList[] __attribute__((aligned (2))) = dsBodyStaticDList;
|
||||
#endif
|
||||
|
||||
#define dsHandTrailDList "__OTR__overlays/ovl_Boss_Sst/sHandTrailDList"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sHandTrailDList[] = dsHandTrailDList;
|
||||
#else
|
||||
static const char sHandTrailDList[] __attribute__((aligned (2))) = dsHandTrailDList;
|
||||
#endif
|
||||
|
||||
#define dsIntroVanishDList "__OTR__overlays/ovl_Boss_Sst/sIntroVanishDList"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sIntroVanishDList[] = dsIntroVanishDList;
|
||||
#else
|
||||
static const char sIntroVanishDList[] __attribute__((aligned (2))) = dsIntroVanishDList;
|
||||
#endif
|
||||
|
||||
#define dsShadowDList "__OTR__overlays/ovl_Boss_Sst/sShadowDList"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sShadowDList[] = dsShadowDList;
|
||||
#else
|
||||
static const char sShadowDList[] __attribute__((aligned (2))) = dsShadowDList;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_SstTex_00A438 "__OTR__overlays/ovl_Boss_Sst/ovl_Boss_SstTex_00A438"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_SstTex_00A438[] = dovl_Boss_SstTex_00A438;
|
||||
#else
|
||||
static const char ovl_Boss_SstTex_00A438[] __attribute__((aligned (2))) = dovl_Boss_SstTex_00A438;
|
||||
#endif
|
||||
|
||||
#define dovl_Boss_SstTex_00A8F0 "__OTR__overlays/ovl_Boss_Sst/ovl_Boss_SstTex_00A8F0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Boss_SstTex_00A8F0[] = dovl_Boss_SstTex_00A8F0;
|
||||
#else
|
||||
static const char ovl_Boss_SstTex_00A8F0[] __attribute__((aligned (2))) = dovl_Boss_SstTex_00A8F0;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsBodyStaticDList "__OTR__overlays/ovl_Boss_Sst/sBodyStaticDList"
|
||||
static const ALIGN_ASSET(2) char sBodyStaticDList[] = dsBodyStaticDList;
|
||||
|
||||
#define dsHandTrailDList "__OTR__overlays/ovl_Boss_Sst/sHandTrailDList"
|
||||
static const ALIGN_ASSET(2) char sHandTrailDList[] = dsHandTrailDList;
|
||||
|
||||
#define dsIntroVanishDList "__OTR__overlays/ovl_Boss_Sst/sIntroVanishDList"
|
||||
static const ALIGN_ASSET(2) char sIntroVanishDList[] = dsIntroVanishDList;
|
||||
|
||||
#define dsShadowDList "__OTR__overlays/ovl_Boss_Sst/sShadowDList"
|
||||
static const ALIGN_ASSET(2) char sShadowDList[] = dsShadowDList;
|
||||
|
||||
#define dovl_Boss_SstTex_00A438 "__OTR__overlays/ovl_Boss_Sst/ovl_Boss_SstTex_00A438"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_SstTex_00A438[] = dovl_Boss_SstTex_00A438;
|
||||
|
||||
#define dovl_Boss_SstTex_00A8F0 "__OTR__overlays/ovl_Boss_Sst/ovl_Boss_SstTex_00A8F0"
|
||||
static const ALIGN_ASSET(2) char ovl_Boss_SstTex_00A8F0[] = dovl_Boss_SstTex_00A8F0;
|
||||
@@ -1,37 +1,18 @@
|
||||
#pragma once
|
||||
#define dD_809932D0 "__OTR__overlays/ovl_Demo_Shd/D_809932D0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_809932D0[] = dD_809932D0;
|
||||
#else
|
||||
static const char D_809932D0[] __attribute__((aligned (2))) = dD_809932D0;
|
||||
#endif
|
||||
|
||||
#define dD_80993390 "__OTR__overlays/ovl_Demo_Shd/D_80993390"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80993390[] = dD_80993390;
|
||||
#else
|
||||
static const char D_80993390[] __attribute__((aligned (2))) = dD_80993390;
|
||||
#endif
|
||||
|
||||
#define dD_809934B8 "__OTR__overlays/ovl_Demo_Shd/D_809934B8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_809934B8[] = dD_809934B8;
|
||||
#else
|
||||
static const char D_809934B8[] __attribute__((aligned (2))) = dD_809934B8;
|
||||
#endif
|
||||
|
||||
#define dovl_Demo_ShdTex_000450 "__OTR__overlays/ovl_Demo_Shd/ovl_Demo_ShdTex_000450"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Demo_ShdTex_000450[] = dovl_Demo_ShdTex_000450;
|
||||
#else
|
||||
static const char ovl_Demo_ShdTex_000450[] __attribute__((aligned (2))) = dovl_Demo_ShdTex_000450;
|
||||
#endif
|
||||
|
||||
#define dovl_Demo_ShdTex_000C50 "__OTR__overlays/ovl_Demo_Shd/ovl_Demo_ShdTex_000C50"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_Demo_ShdTex_000C50[] = dovl_Demo_ShdTex_000C50;
|
||||
#else
|
||||
static const char ovl_Demo_ShdTex_000C50[] __attribute__((aligned (2))) = dovl_Demo_ShdTex_000C50;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dD_809932D0 "__OTR__overlays/ovl_Demo_Shd/D_809932D0"
|
||||
static const ALIGN_ASSET(2) char D_809932D0[] = dD_809932D0;
|
||||
|
||||
#define dD_80993390 "__OTR__overlays/ovl_Demo_Shd/D_80993390"
|
||||
static const ALIGN_ASSET(2) char D_80993390[] = dD_80993390;
|
||||
|
||||
#define dD_809934B8 "__OTR__overlays/ovl_Demo_Shd/D_809934B8"
|
||||
static const ALIGN_ASSET(2) char D_809934B8[] = dD_809934B8;
|
||||
|
||||
#define dovl_Demo_ShdTex_000450 "__OTR__overlays/ovl_Demo_Shd/ovl_Demo_ShdTex_000450"
|
||||
static const ALIGN_ASSET(2) char ovl_Demo_ShdTex_000450[] = dovl_Demo_ShdTex_000450;
|
||||
|
||||
#define dovl_Demo_ShdTex_000C50 "__OTR__overlays/ovl_Demo_Shd/ovl_Demo_ShdTex_000C50"
|
||||
static const ALIGN_ASSET(2) char ovl_Demo_ShdTex_000C50[] = dovl_Demo_ShdTex_000C50;
|
||||
@@ -1,37 +1,18 @@
|
||||
#pragma once
|
||||
#define dD_809AD278 "__OTR__overlays/ovl_Elf_Msg/D_809AD278"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_809AD278[] = dD_809AD278;
|
||||
#else
|
||||
static const char D_809AD278[] __attribute__((aligned (2))) = dD_809AD278;
|
||||
#endif
|
||||
|
||||
#define dsCylinderVtx "__OTR__overlays/ovl_Elf_Msg/sCylinderVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCylinderVtx[] = dsCylinderVtx;
|
||||
#else
|
||||
static const char sCylinderVtx[] __attribute__((aligned (2))) = dsCylinderVtx;
|
||||
#endif
|
||||
|
||||
#define dsCylinderDL "__OTR__overlays/ovl_Elf_Msg/sCylinderDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCylinderDL[] = dsCylinderDL;
|
||||
#else
|
||||
static const char sCylinderDL[] __attribute__((aligned (2))) = dsCylinderDL;
|
||||
#endif
|
||||
|
||||
#define dsCubeVtx "__OTR__overlays/ovl_Elf_Msg/sCubeVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCubeVtx[] = dsCubeVtx;
|
||||
#else
|
||||
static const char sCubeVtx[] __attribute__((aligned (2))) = dsCubeVtx;
|
||||
#endif
|
||||
|
||||
#define dsCubeDL "__OTR__overlays/ovl_Elf_Msg/sCubeDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCubeDL[] = dsCubeDL;
|
||||
#else
|
||||
static const char sCubeDL[] __attribute__((aligned (2))) = dsCubeDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dD_809AD278 "__OTR__overlays/ovl_Elf_Msg/D_809AD278"
|
||||
static const ALIGN_ASSET(2) char D_809AD278[] = dD_809AD278;
|
||||
|
||||
#define dsCylinderVtx "__OTR__overlays/ovl_Elf_Msg/sCylinderVtx"
|
||||
static const ALIGN_ASSET(2) char sCylinderVtx[] = dsCylinderVtx;
|
||||
|
||||
#define dsCylinderDL "__OTR__overlays/ovl_Elf_Msg/sCylinderDL"
|
||||
static const ALIGN_ASSET(2) char sCylinderDL[] = dsCylinderDL;
|
||||
|
||||
#define dsCubeVtx "__OTR__overlays/ovl_Elf_Msg/sCubeVtx"
|
||||
static const ALIGN_ASSET(2) char sCubeVtx[] = dsCubeVtx;
|
||||
|
||||
#define dsCubeDL "__OTR__overlays/ovl_Elf_Msg/sCubeDL"
|
||||
static const ALIGN_ASSET(2) char sCubeDL[] = dsCubeDL;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dD_809ADC38 "__OTR__overlays/ovl_Elf_Msg2/D_809ADC38"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_809ADC38[] = dD_809ADC38;
|
||||
#else
|
||||
static const char D_809ADC38[] __attribute__((aligned (2))) = dD_809ADC38;
|
||||
#endif
|
||||
|
||||
#define dsCubeVtx "__OTR__overlays/ovl_Elf_Msg2/sCubeVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCubeVtx[] = dsCubeVtx;
|
||||
#else
|
||||
static const char sCubeVtx[] __attribute__((aligned (2))) = dsCubeVtx;
|
||||
#endif
|
||||
|
||||
#define dsCubeDL "__OTR__overlays/ovl_Elf_Msg2/sCubeDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCubeDL[] = dsCubeDL;
|
||||
#else
|
||||
static const char sCubeDL[] __attribute__((aligned (2))) = dsCubeDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dD_809ADC38 "__OTR__overlays/ovl_Elf_Msg2/D_809ADC38"
|
||||
static const ALIGN_ASSET(2) char D_809ADC38[] = dD_809ADC38;
|
||||
|
||||
#define dsCubeVtx "__OTR__overlays/ovl_Elf_Msg2/sCubeVtx"
|
||||
static const ALIGN_ASSET(2) char sCubeVtx[] = dsCubeVtx;
|
||||
|
||||
#define dsCubeDL "__OTR__overlays/ovl_Elf_Msg2/sCubeDL"
|
||||
static const ALIGN_ASSET(2) char sCubeDL[] = dsCubeDL;
|
||||
@@ -1,16 +1,9 @@
|
||||
#pragma once
|
||||
#define dD_809C16F0 "__OTR__overlays/ovl_En_Bili/D_809C16F0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_809C16F0[] = dD_809C16F0;
|
||||
#else
|
||||
static const char D_809C16F0[] __attribute__((aligned (2))) = dD_809C16F0;
|
||||
#endif
|
||||
|
||||
#define dD_809C1700 "__OTR__overlays/ovl_En_Bili/D_809C1700"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_809C1700[] = dD_809C1700;
|
||||
#else
|
||||
static const char D_809C1700[] __attribute__((aligned (2))) = dD_809C1700;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dD_809C16F0 "__OTR__overlays/ovl_En_Bili/D_809C16F0"
|
||||
static const ALIGN_ASSET(2) char D_809C16F0[] = dD_809C16F0;
|
||||
|
||||
#define dD_809C1700 "__OTR__overlays/ovl_En_Bili/D_809C1700"
|
||||
static const ALIGN_ASSET(2) char D_809C1700[] = dD_809C1700;
|
||||
@@ -1,170 +1,75 @@
|
||||
#pragma once
|
||||
#define dgArwingDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gArwingDL[] = dgArwingDL;
|
||||
#else
|
||||
static const char gArwingDL[] __attribute__((aligned (2))) = dgArwingDL;
|
||||
#endif
|
||||
|
||||
#define dgArwingLaserDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingLaserDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gArwingLaserDL[] = dgArwingLaserDL;
|
||||
#else
|
||||
static const char gArwingLaserDL[] __attribute__((aligned (2))) = dgArwingLaserDL;
|
||||
#endif
|
||||
|
||||
#define dgArwingBackfireDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingBackfireDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gArwingBackfireDL[] = dgArwingBackfireDL;
|
||||
#else
|
||||
static const char gArwingBackfireDL[] __attribute__((aligned (2))) = dgArwingBackfireDL;
|
||||
#endif
|
||||
|
||||
#define dgArwingDebrisEffectMaterialDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDebrisEffectMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gArwingDebrisEffectMaterialDL[] = dgArwingDebrisEffectMaterialDL;
|
||||
#else
|
||||
static const char gArwingDebrisEffectMaterialDL[] __attribute__((aligned (2))) = dgArwingDebrisEffectMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dgArwingDebrisEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDebrisEffectDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gArwingDebrisEffectDL[] = dgArwingDebrisEffectDL;
|
||||
#else
|
||||
static const char gArwingDebrisEffectDL[] __attribute__((aligned (2))) = dgArwingDebrisEffectDL;
|
||||
#endif
|
||||
|
||||
#define dgArwingFireEffectMaterialDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFireEffectMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gArwingFireEffectMaterialDL[] = dgArwingFireEffectMaterialDL;
|
||||
#else
|
||||
static const char gArwingFireEffectMaterialDL[] __attribute__((aligned (2))) = dgArwingFireEffectMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dgArwingFireEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFireEffectDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gArwingFireEffectDL[] = dgArwingFireEffectDL;
|
||||
#else
|
||||
static const char gArwingFireEffectDL[] __attribute__((aligned (2))) = dgArwingFireEffectDL;
|
||||
#endif
|
||||
|
||||
#define dgArwingFlashEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFlashEffectDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gArwingFlashEffectDL[] = dgArwingFlashEffectDL;
|
||||
#else
|
||||
static const char gArwingFlashEffectDL[] __attribute__((aligned (2))) = dgArwingFlashEffectDL;
|
||||
#endif
|
||||
|
||||
#define dgArwingFlashEffectGroundDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFlashEffectGroundDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gArwingFlashEffectGroundDL[] = dgArwingFlashEffectGroundDL;
|
||||
#else
|
||||
static const char gArwingFlashEffectGroundDL[] __attribute__((aligned (2))) = dgArwingFlashEffectGroundDL;
|
||||
#endif
|
||||
|
||||
#define dgArwingShadowDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingShadowDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gArwingShadowDL[] = dgArwingShadowDL;
|
||||
#else
|
||||
static const char gArwingShadowDL[] __attribute__((aligned (2))) = dgArwingShadowDL;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_003B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003B88"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_003B88[] = dovl_En_Clear_TagTex_003B88;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_003B88[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_003B88;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_004B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_004B88"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_004B88[] = dovl_En_Clear_TagTex_004B88;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_004B88[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_004B88;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_003388 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003388"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_003388[] = dovl_En_Clear_TagTex_003388;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_003388[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_003388;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_005388 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_005388"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_005388[] = dovl_En_Clear_TagTex_005388;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_005388[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_005388;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_005B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_005B88"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_005B88[] = dovl_En_Clear_TagTex_005B88;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_005B88[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_005B88;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_003308 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003308"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_003308[] = dovl_En_Clear_TagTex_003308;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_003308[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_003308;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_006458 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006458"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_006458[] = dovl_En_Clear_TagTex_006458;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_006458[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_006458;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_006708 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006708"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_006708[] = dovl_En_Clear_TagTex_006708;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_006708[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_006708;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_006808 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006808"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_006808[] = dovl_En_Clear_TagTex_006808;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_006808[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_006808;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_006AD0 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006AD0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_006AD0[] = dovl_En_Clear_TagTex_006AD0;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_006AD0[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_006AD0;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_006ED0 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006ED0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_006ED0[] = dovl_En_Clear_TagTex_006ED0;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_006ED0[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_006ED0;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_0071C8 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_0071C8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_0071C8[] = dovl_En_Clear_TagTex_0071C8;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_0071C8[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_0071C8;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_008288 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_008288"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_008288[] = dovl_En_Clear_TagTex_008288;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_008288[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_008288;
|
||||
#endif
|
||||
|
||||
#define dovl_En_Clear_TagTex_008540 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_008540"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char ovl_En_Clear_TagTex_008540[] = dovl_En_Clear_TagTex_008540;
|
||||
#else
|
||||
static const char ovl_En_Clear_TagTex_008540[] __attribute__((aligned (2))) = dovl_En_Clear_TagTex_008540;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgArwingDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDL"
|
||||
static const ALIGN_ASSET(2) char gArwingDL[] = dgArwingDL;
|
||||
|
||||
#define dgArwingLaserDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingLaserDL"
|
||||
static const ALIGN_ASSET(2) char gArwingLaserDL[] = dgArwingLaserDL;
|
||||
|
||||
#define dgArwingBackfireDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingBackfireDL"
|
||||
static const ALIGN_ASSET(2) char gArwingBackfireDL[] = dgArwingBackfireDL;
|
||||
|
||||
#define dgArwingDebrisEffectMaterialDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDebrisEffectMaterialDL"
|
||||
static const ALIGN_ASSET(2) char gArwingDebrisEffectMaterialDL[] = dgArwingDebrisEffectMaterialDL;
|
||||
|
||||
#define dgArwingDebrisEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingDebrisEffectDL"
|
||||
static const ALIGN_ASSET(2) char gArwingDebrisEffectDL[] = dgArwingDebrisEffectDL;
|
||||
|
||||
#define dgArwingFireEffectMaterialDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFireEffectMaterialDL"
|
||||
static const ALIGN_ASSET(2) char gArwingFireEffectMaterialDL[] = dgArwingFireEffectMaterialDL;
|
||||
|
||||
#define dgArwingFireEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFireEffectDL"
|
||||
static const ALIGN_ASSET(2) char gArwingFireEffectDL[] = dgArwingFireEffectDL;
|
||||
|
||||
#define dgArwingFlashEffectDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFlashEffectDL"
|
||||
static const ALIGN_ASSET(2) char gArwingFlashEffectDL[] = dgArwingFlashEffectDL;
|
||||
|
||||
#define dgArwingFlashEffectGroundDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingFlashEffectGroundDL"
|
||||
static const ALIGN_ASSET(2) char gArwingFlashEffectGroundDL[] = dgArwingFlashEffectGroundDL;
|
||||
|
||||
#define dgArwingShadowDL "__OTR__overlays/ovl_En_Clear_Tag/gArwingShadowDL"
|
||||
static const ALIGN_ASSET(2) char gArwingShadowDL[] = dgArwingShadowDL;
|
||||
|
||||
#define dovl_En_Clear_TagTex_003B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003B88"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_003B88[] = dovl_En_Clear_TagTex_003B88;
|
||||
|
||||
#define dovl_En_Clear_TagTex_004B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_004B88"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_004B88[] = dovl_En_Clear_TagTex_004B88;
|
||||
|
||||
#define dovl_En_Clear_TagTex_003388 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003388"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_003388[] = dovl_En_Clear_TagTex_003388;
|
||||
|
||||
#define dovl_En_Clear_TagTex_005388 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_005388"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_005388[] = dovl_En_Clear_TagTex_005388;
|
||||
|
||||
#define dovl_En_Clear_TagTex_005B88 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_005B88"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_005B88[] = dovl_En_Clear_TagTex_005B88;
|
||||
|
||||
#define dovl_En_Clear_TagTex_003308 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_003308"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_003308[] = dovl_En_Clear_TagTex_003308;
|
||||
|
||||
#define dovl_En_Clear_TagTex_006458 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006458"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_006458[] = dovl_En_Clear_TagTex_006458;
|
||||
|
||||
#define dovl_En_Clear_TagTex_006708 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006708"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_006708[] = dovl_En_Clear_TagTex_006708;
|
||||
|
||||
#define dovl_En_Clear_TagTex_006808 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006808"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_006808[] = dovl_En_Clear_TagTex_006808;
|
||||
|
||||
#define dovl_En_Clear_TagTex_006AD0 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006AD0"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_006AD0[] = dovl_En_Clear_TagTex_006AD0;
|
||||
|
||||
#define dovl_En_Clear_TagTex_006ED0 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_006ED0"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_006ED0[] = dovl_En_Clear_TagTex_006ED0;
|
||||
|
||||
#define dovl_En_Clear_TagTex_0071C8 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_0071C8"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_0071C8[] = dovl_En_Clear_TagTex_0071C8;
|
||||
|
||||
#define dovl_En_Clear_TagTex_008288 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_008288"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_008288[] = dovl_En_Clear_TagTex_008288;
|
||||
|
||||
#define dovl_En_Clear_TagTex_008540 "__OTR__overlays/ovl_En_Clear_Tag/ovl_En_Clear_TagTex_008540"
|
||||
static const ALIGN_ASSET(2) char ovl_En_Clear_TagTex_008540[] = dovl_En_Clear_TagTex_008540;
|
||||
@@ -1,51 +1,24 @@
|
||||
#pragma once
|
||||
#define dgMantTex "__OTR__overlays/ovl_En_Ganon_Mant/gMantTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gMantTex[] = dgMantTex;
|
||||
#else
|
||||
static const char gMantTex[] __attribute__((aligned (2))) = dgMantTex;
|
||||
#endif
|
||||
|
||||
#define dgMantUnusedTex "__OTR__overlays/ovl_En_Ganon_Mant/gMantUnusedTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gMantUnusedTex[] = dgMantUnusedTex;
|
||||
#else
|
||||
static const char gMantUnusedTex[] __attribute__((aligned (2))) = dgMantUnusedTex;
|
||||
#endif
|
||||
|
||||
#define dgMant1Vtx "__OTR__overlays/ovl_En_Ganon_Mant/gMant1Vtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gMant1Vtx[] = dgMant1Vtx;
|
||||
#else
|
||||
static const char gMant1Vtx[] __attribute__((aligned (2))) = dgMant1Vtx;
|
||||
#endif
|
||||
|
||||
#define dgMantMaterialDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gMantMaterialDL[] = dgMantMaterialDL;
|
||||
#else
|
||||
static const char gMantMaterialDL[] __attribute__((aligned (2))) = dgMantMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dgMantUnusedMaterialDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantUnusedMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gMantUnusedMaterialDL[] = dgMantUnusedMaterialDL;
|
||||
#else
|
||||
static const char gMantUnusedMaterialDL[] __attribute__((aligned (2))) = dgMantUnusedMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dgMantDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gMantDL[] = dgMantDL;
|
||||
#else
|
||||
static const char gMantDL[] __attribute__((aligned (2))) = dgMantDL;
|
||||
#endif
|
||||
|
||||
#define dgMant2Vtx "__OTR__overlays/ovl_En_Ganon_Mant/gMant2Vtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gMant2Vtx[] = dgMant2Vtx;
|
||||
#else
|
||||
static const char gMant2Vtx[] __attribute__((aligned (2))) = dgMant2Vtx;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgMantTex "__OTR__overlays/ovl_En_Ganon_Mant/gMantTex"
|
||||
static const ALIGN_ASSET(2) char gMantTex[] = dgMantTex;
|
||||
|
||||
#define dgMantUnusedTex "__OTR__overlays/ovl_En_Ganon_Mant/gMantUnusedTex"
|
||||
static const ALIGN_ASSET(2) char gMantUnusedTex[] = dgMantUnusedTex;
|
||||
|
||||
#define dgMant1Vtx "__OTR__overlays/ovl_En_Ganon_Mant/gMant1Vtx"
|
||||
static const ALIGN_ASSET(2) char gMant1Vtx[] = dgMant1Vtx;
|
||||
|
||||
#define dgMantMaterialDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantMaterialDL"
|
||||
static const ALIGN_ASSET(2) char gMantMaterialDL[] = dgMantMaterialDL;
|
||||
|
||||
#define dgMantUnusedMaterialDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantUnusedMaterialDL"
|
||||
static const ALIGN_ASSET(2) char gMantUnusedMaterialDL[] = dgMantUnusedMaterialDL;
|
||||
|
||||
#define dgMantDL "__OTR__overlays/ovl_En_Ganon_Mant/gMantDL"
|
||||
static const ALIGN_ASSET(2) char gMantDL[] = dgMantDL;
|
||||
|
||||
#define dgMant2Vtx "__OTR__overlays/ovl_En_Ganon_Mant/gMant2Vtx"
|
||||
static const ALIGN_ASSET(2) char gMant2Vtx[] = dgMant2Vtx;
|
||||
@@ -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;
|
||||
@@ -1,16 +1,9 @@
|
||||
#pragma once
|
||||
#define dsPlaneVtx "__OTR__overlays/ovl_En_Holl/sPlaneVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPlaneVtx[] = dsPlaneVtx;
|
||||
#else
|
||||
static const char sPlaneVtx[] __attribute__((aligned (2))) = dsPlaneVtx;
|
||||
#endif
|
||||
|
||||
#define dsPlaneDL "__OTR__overlays/ovl_En_Holl/sPlaneDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPlaneDL[] = dsPlaneDL;
|
||||
#else
|
||||
static const char sPlaneDL[] __attribute__((aligned (2))) = dsPlaneDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsPlaneVtx "__OTR__overlays/ovl_En_Holl/sPlaneVtx"
|
||||
static const ALIGN_ASSET(2) char sPlaneVtx[] = dsPlaneVtx;
|
||||
|
||||
#define dsPlaneDL "__OTR__overlays/ovl_En_Holl/sPlaneDL"
|
||||
static const ALIGN_ASSET(2) char sPlaneDL[] = dsPlaneDL;
|
||||
@@ -1,66 +1,32 @@
|
||||
#pragma once
|
||||
#define dsCarpetTex "__OTR__overlays/ovl_En_Jsjutan/sCarpetTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCarpetTex[] = dsCarpetTex;
|
||||
#else
|
||||
static const char sCarpetTex[] __attribute__((aligned (2))) = dsCarpetTex;
|
||||
#endif
|
||||
|
||||
#define dgShadowOddVtx "__OTR__overlays/ovl_En_Jsjutan/gShadowOddVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gShadowOddVtx[] = dgShadowOddVtx;
|
||||
#else
|
||||
static const char gShadowOddVtx[] __attribute__((aligned (2))) = dgShadowOddVtx;
|
||||
#endif
|
||||
|
||||
#define dsShadowEvenVtx "__OTR__overlays/ovl_En_Jsjutan/sShadowEvenVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sShadowEvenVtx[] = dsShadowEvenVtx;
|
||||
#else
|
||||
static const char sShadowEvenVtx[] __attribute__((aligned (2))) = dsShadowEvenVtx;
|
||||
#endif
|
||||
|
||||
#define dsCarpetOddVtx "__OTR__overlays/ovl_En_Jsjutan/sCarpetOddVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCarpetOddVtx[] = dsCarpetOddVtx;
|
||||
#else
|
||||
static const char sCarpetOddVtx[] __attribute__((aligned (2))) = dsCarpetOddVtx;
|
||||
#endif
|
||||
|
||||
#define dsCarpetMaterialDL "__OTR__overlays/ovl_En_Jsjutan/sCarpetMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCarpetMaterialDL[] = dsCarpetMaterialDL;
|
||||
#else
|
||||
static const char sCarpetMaterialDL[] __attribute__((aligned (2))) = dsCarpetMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsShadowMaterialDL "__OTR__overlays/ovl_En_Jsjutan/sShadowMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sShadowMaterialDL[] = dsShadowMaterialDL;
|
||||
#else
|
||||
static const char sShadowMaterialDL[] __attribute__((aligned (2))) = dsShadowMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsModelDL "__OTR__overlays/ovl_En_Jsjutan/sModelDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sModelDL[] = dsModelDL;
|
||||
#else
|
||||
static const char sModelDL[] __attribute__((aligned (2))) = dsModelDL;
|
||||
#endif
|
||||
|
||||
#define dsCarpetEvenVtx "__OTR__overlays/ovl_En_Jsjutan/sCarpetEvenVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCarpetEvenVtx[] = dsCarpetEvenVtx;
|
||||
#else
|
||||
static const char sCarpetEvenVtx[] __attribute__((aligned (2))) = dsCarpetEvenVtx;
|
||||
#endif
|
||||
|
||||
#define dsCol "__OTR__overlays/ovl_En_Jsjutan/sCol"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCol[] = dsCol;
|
||||
#else
|
||||
static const char sCol[] __attribute__((aligned (2))) = dsCol;
|
||||
#endif
|
||||
|
||||
extern u8 sShadowTex[2048];
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsCarpetTex "__OTR__overlays/ovl_En_Jsjutan/sCarpetTex"
|
||||
static const ALIGN_ASSET(2) char sCarpetTex[] = dsCarpetTex;
|
||||
|
||||
#define dgShadowOddVtx "__OTR__overlays/ovl_En_Jsjutan/gShadowOddVtx"
|
||||
static const ALIGN_ASSET(2) char gShadowOddVtx[] = dgShadowOddVtx;
|
||||
|
||||
#define dsShadowEvenVtx "__OTR__overlays/ovl_En_Jsjutan/sShadowEvenVtx"
|
||||
static const ALIGN_ASSET(2) char sShadowEvenVtx[] = dsShadowEvenVtx;
|
||||
|
||||
#define dsCarpetOddVtx "__OTR__overlays/ovl_En_Jsjutan/sCarpetOddVtx"
|
||||
static const ALIGN_ASSET(2) char sCarpetOddVtx[] = dsCarpetOddVtx;
|
||||
|
||||
#define dsCarpetMaterialDL "__OTR__overlays/ovl_En_Jsjutan/sCarpetMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sCarpetMaterialDL[] = dsCarpetMaterialDL;
|
||||
|
||||
#define dsShadowMaterialDL "__OTR__overlays/ovl_En_Jsjutan/sShadowMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sShadowMaterialDL[] = dsShadowMaterialDL;
|
||||
|
||||
#define dsModelDL "__OTR__overlays/ovl_En_Jsjutan/sModelDL"
|
||||
static const ALIGN_ASSET(2) char sModelDL[] = dsModelDL;
|
||||
|
||||
#define dsCarpetEvenVtx "__OTR__overlays/ovl_En_Jsjutan/sCarpetEvenVtx"
|
||||
static const ALIGN_ASSET(2) char sCarpetEvenVtx[] = dsCarpetEvenVtx;
|
||||
|
||||
#define dsCol "__OTR__overlays/ovl_En_Jsjutan/sCol"
|
||||
static const ALIGN_ASSET(2) char sCol[] = dsCol;
|
||||
|
||||
extern u8 sShadowTex[2048];
|
||||
@@ -1,16 +1,9 @@
|
||||
#pragma once
|
||||
#define dsShadowVtx "__OTR__overlays/ovl_En_Kanban/sShadowVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sShadowVtx[] = dsShadowVtx;
|
||||
#else
|
||||
static const char sShadowVtx[] __attribute__((aligned (2))) = dsShadowVtx;
|
||||
#endif
|
||||
|
||||
#define dsShadowDL "__OTR__overlays/ovl_En_Kanban/sShadowDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sShadowDL[] = dsShadowDL;
|
||||
#else
|
||||
static const char sShadowDL[] __attribute__((aligned (2))) = dsShadowDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsShadowVtx "__OTR__overlays/ovl_En_Kanban/sShadowVtx"
|
||||
static const ALIGN_ASSET(2) char sShadowVtx[] = dsShadowVtx;
|
||||
|
||||
#define dsShadowDL "__OTR__overlays/ovl_En_Kanban/sShadowDL"
|
||||
static const ALIGN_ASSET(2) char sShadowDL[] = dsShadowDL;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dD_80AFA398 "__OTR__overlays/ovl_En_Sda/D_80AFA398"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80AFA398[] = dD_80AFA398;
|
||||
#else
|
||||
static const char D_80AFA398[] __attribute__((aligned (2))) = dD_80AFA398;
|
||||
#endif
|
||||
|
||||
#define dD_80AFA3D8 "__OTR__overlays/ovl_En_Sda/D_80AFA3D8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80AFA3D8[] = dD_80AFA3D8;
|
||||
#else
|
||||
static const char D_80AFA3D8[] __attribute__((aligned (2))) = dD_80AFA3D8;
|
||||
#endif
|
||||
|
||||
#define dD_80AFA3F8 "__OTR__overlays/ovl_En_Sda/D_80AFA3F8"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80AFA3F8[] = dD_80AFA3F8;
|
||||
#else
|
||||
static const char D_80AFA3F8[] __attribute__((aligned (2))) = dD_80AFA3F8;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dD_80AFA398 "__OTR__overlays/ovl_En_Sda/D_80AFA398"
|
||||
static const ALIGN_ASSET(2) char D_80AFA398[] = dD_80AFA398;
|
||||
|
||||
#define dD_80AFA3D8 "__OTR__overlays/ovl_En_Sda/D_80AFA3D8"
|
||||
static const ALIGN_ASSET(2) char D_80AFA3D8[] = dD_80AFA3D8;
|
||||
|
||||
#define dD_80AFA3F8 "__OTR__overlays/ovl_En_Sda/D_80AFA3F8"
|
||||
static const ALIGN_ASSET(2) char D_80AFA3F8[] = dD_80AFA3F8;
|
||||
@@ -1,16 +1,9 @@
|
||||
#pragma once
|
||||
#define dD_80B043C0 "__OTR__overlays/ovl_En_Ssh/D_80B043C0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80B043C0[] = dD_80B043C0;
|
||||
#else
|
||||
static const char D_80B043C0[] __attribute__((aligned (2))) = dD_80B043C0;
|
||||
#endif
|
||||
|
||||
#define dD_80B04400 "__OTR__overlays/ovl_En_Ssh/D_80B04400"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80B04400[] = dD_80B04400;
|
||||
#else
|
||||
static const char D_80B04400[] __attribute__((aligned (2))) = dD_80B04400;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dD_80B043C0 "__OTR__overlays/ovl_En_Ssh/D_80B043C0"
|
||||
static const ALIGN_ASSET(2) char D_80B043C0[] = dD_80B043C0;
|
||||
|
||||
#define dD_80B04400 "__OTR__overlays/ovl_En_Ssh/D_80B04400"
|
||||
static const ALIGN_ASSET(2) char D_80B04400[] = dD_80B04400;
|
||||
@@ -1,16 +1,9 @@
|
||||
#pragma once
|
||||
#define dsSkulltulaUnusedVtx "__OTR__overlays/ovl_En_St/sSkulltulaUnusedVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sSkulltulaUnusedVtx[] = dsSkulltulaUnusedVtx;
|
||||
#else
|
||||
static const char sSkulltulaUnusedVtx[] __attribute__((aligned (2))) = dsSkulltulaUnusedVtx;
|
||||
#endif
|
||||
|
||||
#define dsSkulltulaUnusedDL "__OTR__overlays/ovl_En_St/sSkulltulaUnusedDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sSkulltulaUnusedDL[] = dsSkulltulaUnusedDL;
|
||||
#else
|
||||
static const char sSkulltulaUnusedDL[] __attribute__((aligned (2))) = dsSkulltulaUnusedDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsSkulltulaUnusedVtx "__OTR__overlays/ovl_En_St/sSkulltulaUnusedVtx"
|
||||
static const ALIGN_ASSET(2) char sSkulltulaUnusedVtx[] = dsSkulltulaUnusedVtx;
|
||||
|
||||
#define dsSkulltulaUnusedDL "__OTR__overlays/ovl_En_St/sSkulltulaUnusedDL"
|
||||
static const ALIGN_ASSET(2) char sSkulltulaUnusedDL[] = dsSkulltulaUnusedDL;
|
||||
@@ -1,79 +1,36 @@
|
||||
#pragma once
|
||||
#define dsNoseTex "__OTR__overlays/ovl_En_Sth/sNoseTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sNoseTex[] = dsNoseTex;
|
||||
#else
|
||||
static const char sNoseTex[] __attribute__((aligned (2))) = dsNoseTex;
|
||||
#endif
|
||||
|
||||
#define dsHair1Tex "__OTR__overlays/ovl_En_Sth/sHair1Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sHair1Tex[] = dsHair1Tex;
|
||||
#else
|
||||
static const char sHair1Tex[] __attribute__((aligned (2))) = dsHair1Tex;
|
||||
#endif
|
||||
|
||||
#define dsEar1Tex "__OTR__overlays/ovl_En_Sth/sEar1Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sEar1Tex[] = dsEar1Tex;
|
||||
#else
|
||||
static const char sEar1Tex[] __attribute__((aligned (2))) = dsEar1Tex;
|
||||
#endif
|
||||
|
||||
#define dsEyeTex "__OTR__overlays/ovl_En_Sth/sEyeTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sEyeTex[] = dsEyeTex;
|
||||
#else
|
||||
static const char sEyeTex[] __attribute__((aligned (2))) = dsEyeTex;
|
||||
#endif
|
||||
|
||||
#define dsMouthTex "__OTR__overlays/ovl_En_Sth/sMouthTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sMouthTex[] = dsMouthTex;
|
||||
#else
|
||||
static const char sMouthTex[] __attribute__((aligned (2))) = dsMouthTex;
|
||||
#endif
|
||||
|
||||
#define dsEar2Tex "__OTR__overlays/ovl_En_Sth/sEar2Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sEar2Tex[] = dsEar2Tex;
|
||||
#else
|
||||
static const char sEar2Tex[] __attribute__((aligned (2))) = dsEar2Tex;
|
||||
#endif
|
||||
|
||||
#define dsHair2Tex "__OTR__overlays/ovl_En_Sth/sHair2Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sHair2Tex[] = dsHair2Tex;
|
||||
#else
|
||||
static const char sHair2Tex[] __attribute__((aligned (2))) = dsHair2Tex;
|
||||
#endif
|
||||
|
||||
#define dD_80B0A050 "__OTR__overlays/ovl_En_Sth/D_80B0A050"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80B0A050[] = dD_80B0A050;
|
||||
#else
|
||||
static const char D_80B0A050[] __attribute__((aligned (2))) = dD_80B0A050;
|
||||
#endif
|
||||
|
||||
#define dD_80B0A3C0 "__OTR__overlays/ovl_En_Sth/D_80B0A3C0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80B0A3C0[] = dD_80B0A3C0;
|
||||
#else
|
||||
static const char D_80B0A3C0[] __attribute__((aligned (2))) = dD_80B0A3C0;
|
||||
#endif
|
||||
|
||||
#define dsChildDanceAnim "__OTR__overlays/ovl_En_Sth/sChildDanceAnim"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sChildDanceAnim[] = dsChildDanceAnim;
|
||||
#else
|
||||
static const char sChildDanceAnim[] __attribute__((aligned (2))) = dsChildDanceAnim;
|
||||
#endif
|
||||
|
||||
#define dsParentDanceAnim "__OTR__overlays/ovl_En_Sth/sParentDanceAnim"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sParentDanceAnim[] = dsParentDanceAnim;
|
||||
#else
|
||||
static const char sParentDanceAnim[] __attribute__((aligned (2))) = dsParentDanceAnim;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsNoseTex "__OTR__overlays/ovl_En_Sth/sNoseTex"
|
||||
static const ALIGN_ASSET(2) char sNoseTex[] = dsNoseTex;
|
||||
|
||||
#define dsHair1Tex "__OTR__overlays/ovl_En_Sth/sHair1Tex"
|
||||
static const ALIGN_ASSET(2) char sHair1Tex[] = dsHair1Tex;
|
||||
|
||||
#define dsEar1Tex "__OTR__overlays/ovl_En_Sth/sEar1Tex"
|
||||
static const ALIGN_ASSET(2) char sEar1Tex[] = dsEar1Tex;
|
||||
|
||||
#define dsEyeTex "__OTR__overlays/ovl_En_Sth/sEyeTex"
|
||||
static const ALIGN_ASSET(2) char sEyeTex[] = dsEyeTex;
|
||||
|
||||
#define dsMouthTex "__OTR__overlays/ovl_En_Sth/sMouthTex"
|
||||
static const ALIGN_ASSET(2) char sMouthTex[] = dsMouthTex;
|
||||
|
||||
#define dsEar2Tex "__OTR__overlays/ovl_En_Sth/sEar2Tex"
|
||||
static const ALIGN_ASSET(2) char sEar2Tex[] = dsEar2Tex;
|
||||
|
||||
#define dsHair2Tex "__OTR__overlays/ovl_En_Sth/sHair2Tex"
|
||||
static const ALIGN_ASSET(2) char sHair2Tex[] = dsHair2Tex;
|
||||
|
||||
#define dD_80B0A050 "__OTR__overlays/ovl_En_Sth/D_80B0A050"
|
||||
static const ALIGN_ASSET(2) char D_80B0A050[] = dD_80B0A050;
|
||||
|
||||
#define dD_80B0A3C0 "__OTR__overlays/ovl_En_Sth/D_80B0A3C0"
|
||||
static const ALIGN_ASSET(2) char D_80B0A3C0[] = dD_80B0A3C0;
|
||||
|
||||
#define dsChildDanceAnim "__OTR__overlays/ovl_En_Sth/sChildDanceAnim"
|
||||
static const ALIGN_ASSET(2) char sChildDanceAnim[] = dsChildDanceAnim;
|
||||
|
||||
#define dsParentDanceAnim "__OTR__overlays/ovl_En_Sth/sParentDanceAnim"
|
||||
static const ALIGN_ASSET(2) char sParentDanceAnim[] = dsParentDanceAnim;
|
||||
@@ -1,65 +1,30 @@
|
||||
#pragma once
|
||||
#define dsTheLegendOfZeldaTex "__OTR__overlays/ovl_End_Title/sTheLegendOfZeldaTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sTheLegendOfZeldaTex[] = dsTheLegendOfZeldaTex;
|
||||
#else
|
||||
static const char sTheLegendOfZeldaTex[] __attribute__((aligned (2))) = dsTheLegendOfZeldaTex;
|
||||
#endif
|
||||
|
||||
#define dsOcarinaOfTimeTex "__OTR__overlays/ovl_End_Title/sOcarinaOfTimeTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sOcarinaOfTimeTex[] = dsOcarinaOfTimeTex;
|
||||
#else
|
||||
static const char sOcarinaOfTimeTex[] __attribute__((aligned (2))) = dsOcarinaOfTimeTex;
|
||||
#endif
|
||||
|
||||
#define dsTheEndTex "__OTR__overlays/ovl_End_Title/sTheEndTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sTheEndTex[] = dsTheEndTex;
|
||||
#else
|
||||
static const char sTheEndTex[] __attribute__((aligned (2))) = dsTheEndTex;
|
||||
#endif
|
||||
|
||||
#define dsNintendoLeftTex "__OTR__overlays/ovl_End_Title/sNintendoLeftTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sNintendoLeftTex[] = dsNintendoLeftTex;
|
||||
#else
|
||||
static const char sNintendoLeftTex[] __attribute__((aligned (2))) = dsNintendoLeftTex;
|
||||
#endif
|
||||
|
||||
#define dsNintendoRightTex "__OTR__overlays/ovl_End_Title/sNintendoRightTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sNintendoRightTex[] = dsNintendoRightTex;
|
||||
#else
|
||||
static const char sNintendoRightTex[] __attribute__((aligned (2))) = dsNintendoRightTex;
|
||||
#endif
|
||||
|
||||
#define dsPresentedByTex "__OTR__overlays/ovl_End_Title/sPresentedByTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPresentedByTex[] = dsPresentedByTex;
|
||||
#else
|
||||
static const char sPresentedByTex[] __attribute__((aligned (2))) = dsPresentedByTex;
|
||||
#endif
|
||||
|
||||
#define dsTriforceVtx "__OTR__overlays/ovl_End_Title/sTriforceVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sTriforceVtx[] = dsTriforceVtx;
|
||||
#else
|
||||
static const char sTriforceVtx[] __attribute__((aligned (2))) = dsTriforceVtx;
|
||||
#endif
|
||||
|
||||
#define dsTriforceDL "__OTR__overlays/ovl_End_Title/sTriforceDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sTriforceDL[] = dsTriforceDL;
|
||||
#else
|
||||
static const char sTriforceDL[] __attribute__((aligned (2))) = dsTriforceDL;
|
||||
#endif
|
||||
|
||||
#define dsPresentedByNintendoDL "__OTR__overlays/ovl_End_Title/sPresentedByNintendoDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sPresentedByNintendoDL[] = dsPresentedByNintendoDL;
|
||||
#else
|
||||
static const char sPresentedByNintendoDL[] __attribute__((aligned (2))) = dsPresentedByNintendoDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsTheLegendOfZeldaTex "__OTR__overlays/ovl_End_Title/sTheLegendOfZeldaTex"
|
||||
static const ALIGN_ASSET(2) char sTheLegendOfZeldaTex[] = dsTheLegendOfZeldaTex;
|
||||
|
||||
#define dsOcarinaOfTimeTex "__OTR__overlays/ovl_End_Title/sOcarinaOfTimeTex"
|
||||
static const ALIGN_ASSET(2) char sOcarinaOfTimeTex[] = dsOcarinaOfTimeTex;
|
||||
|
||||
#define dsTheEndTex "__OTR__overlays/ovl_End_Title/sTheEndTex"
|
||||
static const ALIGN_ASSET(2) char sTheEndTex[] = dsTheEndTex;
|
||||
|
||||
#define dsNintendoLeftTex "__OTR__overlays/ovl_End_Title/sNintendoLeftTex"
|
||||
static const ALIGN_ASSET(2) char sNintendoLeftTex[] = dsNintendoLeftTex;
|
||||
|
||||
#define dsNintendoRightTex "__OTR__overlays/ovl_End_Title/sNintendoRightTex"
|
||||
static const ALIGN_ASSET(2) char sNintendoRightTex[] = dsNintendoRightTex;
|
||||
|
||||
#define dsPresentedByTex "__OTR__overlays/ovl_End_Title/sPresentedByTex"
|
||||
static const ALIGN_ASSET(2) char sPresentedByTex[] = dsPresentedByTex;
|
||||
|
||||
#define dsTriforceVtx "__OTR__overlays/ovl_End_Title/sTriforceVtx"
|
||||
static const ALIGN_ASSET(2) char sTriforceVtx[] = dsTriforceVtx;
|
||||
|
||||
#define dsTriforceDL "__OTR__overlays/ovl_End_Title/sTriforceDL"
|
||||
static const ALIGN_ASSET(2) char sTriforceDL[] = dsTriforceDL;
|
||||
|
||||
#define dsPresentedByNintendoDL "__OTR__overlays/ovl_End_Title/sPresentedByNintendoDL"
|
||||
static const ALIGN_ASSET(2) char sPresentedByNintendoDL[] = dsPresentedByNintendoDL;
|
||||
@@ -1,58 +1,27 @@
|
||||
#pragma once
|
||||
#define dD_80811BB0 "__OTR__overlays/ovl_file_choose/D_80811BB0"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80811BB0[] = dD_80811BB0;
|
||||
#else
|
||||
static const char D_80811BB0[] __attribute__((aligned (2))) = dD_80811BB0;
|
||||
#endif
|
||||
|
||||
#define dD_80811D30 "__OTR__overlays/ovl_file_choose/D_80811D30"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80811D30[] = dD_80811D30;
|
||||
#else
|
||||
static const char D_80811D30[] __attribute__((aligned (2))) = dD_80811D30;
|
||||
#endif
|
||||
|
||||
#define dD_80811E30 "__OTR__overlays/ovl_file_choose/D_80811E30"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80811E30[] = dD_80811E30;
|
||||
#else
|
||||
static const char D_80811E30[] __attribute__((aligned (2))) = dD_80811E30;
|
||||
#endif
|
||||
|
||||
#define dD_80811F30 "__OTR__overlays/ovl_file_choose/D_80811F30"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80811F30[] = dD_80811F30;
|
||||
#else
|
||||
static const char D_80811F30[] __attribute__((aligned (2))) = dD_80811F30;
|
||||
#endif
|
||||
|
||||
#define dD_80812130 "__OTR__overlays/ovl_file_choose/D_80812130"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char D_80812130[] = dD_80812130;
|
||||
#else
|
||||
static const char D_80812130[] __attribute__((aligned (2))) = dD_80812130;
|
||||
#endif
|
||||
|
||||
#define dgOptionsDividerTopVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerTopVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gOptionsDividerTopVtx[] = dgOptionsDividerTopVtx;
|
||||
#else
|
||||
static const char gOptionsDividerTopVtx[] __attribute__((aligned (2))) = dgOptionsDividerTopVtx;
|
||||
#endif
|
||||
|
||||
#define dgOptionsDividerMiddleVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerMiddleVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gOptionsDividerMiddleVtx[] = dgOptionsDividerMiddleVtx;
|
||||
#else
|
||||
static const char gOptionsDividerMiddleVtx[] __attribute__((aligned (2))) = dgOptionsDividerMiddleVtx;
|
||||
#endif
|
||||
|
||||
#define dgOptionsDividerBottomVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerBottomVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gOptionsDividerBottomVtx[] = dgOptionsDividerBottomVtx;
|
||||
#else
|
||||
static const char gOptionsDividerBottomVtx[] __attribute__((aligned (2))) = dgOptionsDividerBottomVtx;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dD_80811BB0 "__OTR__overlays/ovl_file_choose/D_80811BB0"
|
||||
static const ALIGN_ASSET(2) char D_80811BB0[] = dD_80811BB0;
|
||||
|
||||
#define dD_80811D30 "__OTR__overlays/ovl_file_choose/D_80811D30"
|
||||
static const ALIGN_ASSET(2) char D_80811D30[] = dD_80811D30;
|
||||
|
||||
#define dD_80811E30 "__OTR__overlays/ovl_file_choose/D_80811E30"
|
||||
static const ALIGN_ASSET(2) char D_80811E30[] = dD_80811E30;
|
||||
|
||||
#define dD_80811F30 "__OTR__overlays/ovl_file_choose/D_80811F30"
|
||||
static const ALIGN_ASSET(2) char D_80811F30[] = dD_80811F30;
|
||||
|
||||
#define dD_80812130 "__OTR__overlays/ovl_file_choose/D_80812130"
|
||||
static const ALIGN_ASSET(2) char D_80812130[] = dD_80812130;
|
||||
|
||||
#define dgOptionsDividerTopVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerTopVtx"
|
||||
static const ALIGN_ASSET(2) char gOptionsDividerTopVtx[] = dgOptionsDividerTopVtx;
|
||||
|
||||
#define dgOptionsDividerMiddleVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerMiddleVtx"
|
||||
static const ALIGN_ASSET(2) char gOptionsDividerMiddleVtx[] = dgOptionsDividerMiddleVtx;
|
||||
|
||||
#define dgOptionsDividerBottomVtx "__OTR__overlays/ovl_file_choose/gOptionsDividerBottomVtx"
|
||||
static const ALIGN_ASSET(2) char gOptionsDividerBottomVtx[] = dgOptionsDividerBottomVtx;
|
||||
@@ -1,30 +1,15 @@
|
||||
#pragma once
|
||||
#define dsDiamondTex "__OTR__overlays/ovl_Magic_Dark/sDiamondTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sDiamondTex[] = dsDiamondTex;
|
||||
#else
|
||||
static const char sDiamondTex[] __attribute__((aligned (2))) = dsDiamondTex;
|
||||
#endif
|
||||
|
||||
#define dsDiamondVtx "__OTR__overlays/ovl_Magic_Dark/sDiamondVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sDiamondVtx[] = dsDiamondVtx;
|
||||
#else
|
||||
static const char sDiamondVtx[] __attribute__((aligned (2))) = dsDiamondVtx;
|
||||
#endif
|
||||
|
||||
#define dsDiamondMaterialDL "__OTR__overlays/ovl_Magic_Dark/sDiamondMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sDiamondMaterialDL[] = dsDiamondMaterialDL;
|
||||
#else
|
||||
static const char sDiamondMaterialDL[] __attribute__((aligned (2))) = dsDiamondMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsDiamondModelDL "__OTR__overlays/ovl_Magic_Dark/sDiamondModelDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sDiamondModelDL[] = dsDiamondModelDL;
|
||||
#else
|
||||
static const char sDiamondModelDL[] __attribute__((aligned (2))) = dsDiamondModelDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsDiamondTex "__OTR__overlays/ovl_Magic_Dark/sDiamondTex"
|
||||
static const ALIGN_ASSET(2) char sDiamondTex[] = dsDiamondTex;
|
||||
|
||||
#define dsDiamondVtx "__OTR__overlays/ovl_Magic_Dark/sDiamondVtx"
|
||||
static const ALIGN_ASSET(2) char sDiamondVtx[] = dsDiamondVtx;
|
||||
|
||||
#define dsDiamondMaterialDL "__OTR__overlays/ovl_Magic_Dark/sDiamondMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sDiamondMaterialDL[] = dsDiamondMaterialDL;
|
||||
|
||||
#define dsDiamondModelDL "__OTR__overlays/ovl_Magic_Dark/sDiamondModelDL"
|
||||
static const ALIGN_ASSET(2) char sDiamondModelDL[] = dsDiamondModelDL;
|
||||
@@ -1,30 +1,15 @@
|
||||
#pragma once
|
||||
#define dsTex "__OTR__overlays/ovl_Magic_Fire/sTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sTex[] = dsTex;
|
||||
#else
|
||||
static const char sTex[] __attribute__((aligned (2))) = dsTex;
|
||||
#endif
|
||||
|
||||
#define dsSphereVtx "__OTR__overlays/ovl_Magic_Fire/sSphereVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sSphereVtx[] = dsSphereVtx;
|
||||
#else
|
||||
static const char sSphereVtx[] __attribute__((aligned (2))) = dsSphereVtx;
|
||||
#endif
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Magic_Fire/sMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL;
|
||||
#else
|
||||
static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsModelDL "__OTR__overlays/ovl_Magic_Fire/sModelDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sModelDL[] = dsModelDL;
|
||||
#else
|
||||
static const char sModelDL[] __attribute__((aligned (2))) = dsModelDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsTex "__OTR__overlays/ovl_Magic_Fire/sTex"
|
||||
static const ALIGN_ASSET(2) char sTex[] = dsTex;
|
||||
|
||||
#define dsSphereVtx "__OTR__overlays/ovl_Magic_Fire/sSphereVtx"
|
||||
static const ALIGN_ASSET(2) char sSphereVtx[] = dsSphereVtx;
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Magic_Fire/sMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL;
|
||||
|
||||
#define dsModelDL "__OTR__overlays/ovl_Magic_Fire/sModelDL"
|
||||
static const ALIGN_ASSET(2) char sModelDL[] = dsModelDL;
|
||||
@@ -1,44 +1,21 @@
|
||||
#pragma once
|
||||
#define dsSkel "__OTR__overlays/ovl_Magic_Wind/sSkel"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sSkel[] = dsSkel;
|
||||
#else
|
||||
static const char sSkel[] __attribute__((aligned (2))) = dsSkel;
|
||||
#endif
|
||||
|
||||
#define dsAnim "__OTR__overlays/ovl_Magic_Wind/sAnim"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sAnim[] = dsAnim;
|
||||
#else
|
||||
static const char sAnim[] __attribute__((aligned (2))) = dsAnim;
|
||||
#endif
|
||||
|
||||
#define dsCylinderVtx "__OTR__overlays/ovl_Magic_Wind/sCylinderVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCylinderVtx[] = dsCylinderVtx;
|
||||
#else
|
||||
static const char sCylinderVtx[] __attribute__((aligned (2))) = dsCylinderVtx;
|
||||
#endif
|
||||
|
||||
#define dsTex "__OTR__overlays/ovl_Magic_Wind/sTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sTex[] = dsTex;
|
||||
#else
|
||||
static const char sTex[] __attribute__((aligned (2))) = dsTex;
|
||||
#endif
|
||||
|
||||
#define dsInnerCylinderDL "__OTR__overlays/ovl_Magic_Wind/sInnerCylinderDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sInnerCylinderDL[] = dsInnerCylinderDL;
|
||||
#else
|
||||
static const char sInnerCylinderDL[] __attribute__((aligned (2))) = dsInnerCylinderDL;
|
||||
#endif
|
||||
|
||||
#define dsOuterCylinderDL "__OTR__overlays/ovl_Magic_Wind/sOuterCylinderDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sOuterCylinderDL[] = dsOuterCylinderDL;
|
||||
#else
|
||||
static const char sOuterCylinderDL[] __attribute__((aligned (2))) = dsOuterCylinderDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsSkel "__OTR__overlays/ovl_Magic_Wind/sSkel"
|
||||
static const ALIGN_ASSET(2) char sSkel[] = dsSkel;
|
||||
|
||||
#define dsAnim "__OTR__overlays/ovl_Magic_Wind/sAnim"
|
||||
static const ALIGN_ASSET(2) char sAnim[] = dsAnim;
|
||||
|
||||
#define dsCylinderVtx "__OTR__overlays/ovl_Magic_Wind/sCylinderVtx"
|
||||
static const ALIGN_ASSET(2) char sCylinderVtx[] = dsCylinderVtx;
|
||||
|
||||
#define dsTex "__OTR__overlays/ovl_Magic_Wind/sTex"
|
||||
static const ALIGN_ASSET(2) char sTex[] = dsTex;
|
||||
|
||||
#define dsInnerCylinderDL "__OTR__overlays/ovl_Magic_Wind/sInnerCylinderDL"
|
||||
static const ALIGN_ASSET(2) char sInnerCylinderDL[] = dsInnerCylinderDL;
|
||||
|
||||
#define dsOuterCylinderDL "__OTR__overlays/ovl_Magic_Wind/sOuterCylinderDL"
|
||||
static const ALIGN_ASSET(2) char sOuterCylinderDL[] = dsOuterCylinderDL;
|
||||
@@ -1,30 +1,15 @@
|
||||
#pragma once
|
||||
#define dsTex "__OTR__overlays/ovl_Oceff_Spot/sTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sTex[] = dsTex;
|
||||
#else
|
||||
static const char sTex[] __attribute__((aligned (2))) = dsTex;
|
||||
#endif
|
||||
|
||||
#define dsCylinderVtx "__OTR__overlays/ovl_Oceff_Spot/sCylinderVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCylinderVtx[] = dsCylinderVtx;
|
||||
#else
|
||||
static const char sCylinderVtx[] __attribute__((aligned (2))) = dsCylinderVtx;
|
||||
#endif
|
||||
|
||||
#define dsCylinderMaterialDL "__OTR__overlays/ovl_Oceff_Spot/sCylinderMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCylinderMaterialDL[] = dsCylinderMaterialDL;
|
||||
#else
|
||||
static const char sCylinderMaterialDL[] __attribute__((aligned (2))) = dsCylinderMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsCylinderModelDL "__OTR__overlays/ovl_Oceff_Spot/sCylinderModelDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCylinderModelDL[] = dsCylinderModelDL;
|
||||
#else
|
||||
static const char sCylinderModelDL[] __attribute__((aligned (2))) = dsCylinderModelDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsTex "__OTR__overlays/ovl_Oceff_Spot/sTex"
|
||||
static const ALIGN_ASSET(2) char sTex[] = dsTex;
|
||||
|
||||
#define dsCylinderVtx "__OTR__overlays/ovl_Oceff_Spot/sCylinderVtx"
|
||||
static const ALIGN_ASSET(2) char sCylinderVtx[] = dsCylinderVtx;
|
||||
|
||||
#define dsCylinderMaterialDL "__OTR__overlays/ovl_Oceff_Spot/sCylinderMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sCylinderMaterialDL[] = dsCylinderMaterialDL;
|
||||
|
||||
#define dsCylinderModelDL "__OTR__overlays/ovl_Oceff_Spot/sCylinderModelDL"
|
||||
static const ALIGN_ASSET(2) char sCylinderModelDL[] = dsCylinderModelDL;
|
||||
@@ -1,37 +1,18 @@
|
||||
#pragma once
|
||||
#define dsTex "__OTR__overlays/ovl_Oceff_Storm/sTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sTex[] = dsTex;
|
||||
#else
|
||||
static const char sTex[] __attribute__((aligned (2))) = dsTex;
|
||||
#endif
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Storm/sMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL;
|
||||
#else
|
||||
static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsCylinderVtx "__OTR__overlays/ovl_Oceff_Storm/sCylinderVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCylinderVtx[] = dsCylinderVtx;
|
||||
#else
|
||||
static const char sCylinderVtx[] __attribute__((aligned (2))) = dsCylinderVtx;
|
||||
#endif
|
||||
|
||||
#define dsCylinderMaterialDL "__OTR__overlays/ovl_Oceff_Storm/sCylinderMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCylinderMaterialDL[] = dsCylinderMaterialDL;
|
||||
#else
|
||||
static const char sCylinderMaterialDL[] __attribute__((aligned (2))) = dsCylinderMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsCylinderModelDL "__OTR__overlays/ovl_Oceff_Storm/sCylinderModelDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sCylinderModelDL[] = dsCylinderModelDL;
|
||||
#else
|
||||
static const char sCylinderModelDL[] __attribute__((aligned (2))) = dsCylinderModelDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsTex "__OTR__overlays/ovl_Oceff_Storm/sTex"
|
||||
static const ALIGN_ASSET(2) char sTex[] = dsTex;
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Storm/sMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL;
|
||||
|
||||
#define dsCylinderVtx "__OTR__overlays/ovl_Oceff_Storm/sCylinderVtx"
|
||||
static const ALIGN_ASSET(2) char sCylinderVtx[] = dsCylinderVtx;
|
||||
|
||||
#define dsCylinderMaterialDL "__OTR__overlays/ovl_Oceff_Storm/sCylinderMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sCylinderMaterialDL[] = dsCylinderMaterialDL;
|
||||
|
||||
#define dsCylinderModelDL "__OTR__overlays/ovl_Oceff_Storm/sCylinderModelDL"
|
||||
static const ALIGN_ASSET(2) char sCylinderModelDL[] = dsCylinderModelDL;
|
||||
@@ -1,30 +1,15 @@
|
||||
#pragma once
|
||||
#define dsTex "__OTR__overlays/ovl_Oceff_Wipe/sTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sTex[] = dsTex;
|
||||
#else
|
||||
static const char sTex[] __attribute__((aligned (2))) = dsTex;
|
||||
#endif
|
||||
|
||||
#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe/sFrustumVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sFrustumVtx[] = dsFrustumVtx;
|
||||
#else
|
||||
static const char sFrustumVtx[] __attribute__((aligned (2))) = dsFrustumVtx;
|
||||
#endif
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe/sMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL;
|
||||
#else
|
||||
static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe/sFrustumDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sFrustumDL[] = dsFrustumDL;
|
||||
#else
|
||||
static const char sFrustumDL[] __attribute__((aligned (2))) = dsFrustumDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsTex "__OTR__overlays/ovl_Oceff_Wipe/sTex"
|
||||
static const ALIGN_ASSET(2) char sTex[] = dsTex;
|
||||
|
||||
#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe/sFrustumVtx"
|
||||
static const ALIGN_ASSET(2) char sFrustumVtx[] = dsFrustumVtx;
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe/sMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL;
|
||||
|
||||
#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe/sFrustumDL"
|
||||
static const ALIGN_ASSET(2) char sFrustumDL[] = dsFrustumDL;
|
||||
@@ -1,37 +1,18 @@
|
||||
#pragma once
|
||||
#define ds1Tex "__OTR__overlays/ovl_Oceff_Wipe2/s1Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char s1Tex[] = ds1Tex;
|
||||
#else
|
||||
static const char s1Tex[] __attribute__((aligned (2))) = ds1Tex;
|
||||
#endif
|
||||
|
||||
#define ds2Tex "__OTR__overlays/ovl_Oceff_Wipe2/s2Tex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char s2Tex[] = ds2Tex;
|
||||
#else
|
||||
static const char s2Tex[] __attribute__((aligned (2))) = ds2Tex;
|
||||
#endif
|
||||
|
||||
#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe2/sFrustumVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sFrustumVtx[] = dsFrustumVtx;
|
||||
#else
|
||||
static const char sFrustumVtx[] __attribute__((aligned (2))) = dsFrustumVtx;
|
||||
#endif
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe2/sMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL;
|
||||
#else
|
||||
static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe2/sFrustumDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sFrustumDL[] = dsFrustumDL;
|
||||
#else
|
||||
static const char sFrustumDL[] __attribute__((aligned (2))) = dsFrustumDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define ds1Tex "__OTR__overlays/ovl_Oceff_Wipe2/s1Tex"
|
||||
static const ALIGN_ASSET(2) char s1Tex[] = ds1Tex;
|
||||
|
||||
#define ds2Tex "__OTR__overlays/ovl_Oceff_Wipe2/s2Tex"
|
||||
static const ALIGN_ASSET(2) char s2Tex[] = ds2Tex;
|
||||
|
||||
#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe2/sFrustumVtx"
|
||||
static const ALIGN_ASSET(2) char sFrustumVtx[] = dsFrustumVtx;
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe2/sMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL;
|
||||
|
||||
#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe2/sFrustumDL"
|
||||
static const ALIGN_ASSET(2) char sFrustumDL[] = dsFrustumDL;
|
||||
@@ -1,30 +1,15 @@
|
||||
#pragma once
|
||||
#define dsTex "__OTR__overlays/ovl_Oceff_Wipe3/sTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sTex[] = dsTex;
|
||||
#else
|
||||
static const char sTex[] __attribute__((aligned (2))) = dsTex;
|
||||
#endif
|
||||
|
||||
#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe3/sFrustumVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sFrustumVtx[] = dsFrustumVtx;
|
||||
#else
|
||||
static const char sFrustumVtx[] __attribute__((aligned (2))) = dsFrustumVtx;
|
||||
#endif
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe3/sMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL;
|
||||
#else
|
||||
static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe3/sFrustumDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sFrustumDL[] = dsFrustumDL;
|
||||
#else
|
||||
static const char sFrustumDL[] __attribute__((aligned (2))) = dsFrustumDL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsTex "__OTR__overlays/ovl_Oceff_Wipe3/sTex"
|
||||
static const ALIGN_ASSET(2) char sTex[] = dsTex;
|
||||
|
||||
#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe3/sFrustumVtx"
|
||||
static const ALIGN_ASSET(2) char sFrustumVtx[] = dsFrustumVtx;
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe3/sMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL;
|
||||
|
||||
#define dsFrustumDL "__OTR__overlays/ovl_Oceff_Wipe3/sFrustumDL"
|
||||
static const ALIGN_ASSET(2) char sFrustumDL[] = dsFrustumDL;
|
||||
@@ -1,37 +1,18 @@
|
||||
#pragma once
|
||||
#define dsTex "__OTR__overlays/ovl_Oceff_Wipe4/sTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sTex[] = dsTex;
|
||||
#else
|
||||
static const char sTex[] __attribute__((aligned (2))) = dsTex;
|
||||
#endif
|
||||
|
||||
#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe4/sFrustumVtx"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sFrustumVtx[] = dsFrustumVtx;
|
||||
#else
|
||||
static const char sFrustumVtx[] __attribute__((aligned (2))) = dsFrustumVtx;
|
||||
#endif
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe4/sMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sMaterialDL[] = dsMaterialDL;
|
||||
#else
|
||||
static const char sMaterialDL[] __attribute__((aligned (2))) = dsMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsUnusedMaterialDL "__OTR__overlays/ovl_Oceff_Wipe4/sUnusedMaterialDL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sUnusedMaterialDL[] = dsUnusedMaterialDL;
|
||||
#else
|
||||
static const char sUnusedMaterialDL[] __attribute__((aligned (2))) = dsUnusedMaterialDL;
|
||||
#endif
|
||||
|
||||
#define dsMaterial2DL "__OTR__overlays/ovl_Oceff_Wipe4/sMaterial2DL"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char sMaterial2DL[] = dsMaterial2DL;
|
||||
#else
|
||||
static const char sMaterial2DL[] __attribute__((aligned (2))) = dsMaterial2DL;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dsTex "__OTR__overlays/ovl_Oceff_Wipe4/sTex"
|
||||
static const ALIGN_ASSET(2) char sTex[] = dsTex;
|
||||
|
||||
#define dsFrustumVtx "__OTR__overlays/ovl_Oceff_Wipe4/sFrustumVtx"
|
||||
static const ALIGN_ASSET(2) char sFrustumVtx[] = dsFrustumVtx;
|
||||
|
||||
#define dsMaterialDL "__OTR__overlays/ovl_Oceff_Wipe4/sMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sMaterialDL[] = dsMaterialDL;
|
||||
|
||||
#define dsUnusedMaterialDL "__OTR__overlays/ovl_Oceff_Wipe4/sUnusedMaterialDL"
|
||||
static const ALIGN_ASSET(2) char sUnusedMaterialDL[] = dsUnusedMaterialDL;
|
||||
|
||||
#define dsMaterial2DL "__OTR__overlays/ovl_Oceff_Wipe4/sMaterial2DL"
|
||||
static const ALIGN_ASSET(2) char sMaterial2DL[] = dsMaterial2DL;
|
||||
Reference in New Issue
Block a user