Simplify Asset Headers (#2474)
This commit is contained in:
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgForestTempleTitleCardENGTex "__OTR__textures/g_pn_01/gForestTempleTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gForestTempleTitleCardENGTex[] = dgForestTempleTitleCardENGTex;
|
||||
#else
|
||||
static const char gForestTempleTitleCardENGTex[] __attribute__((aligned (2))) = dgForestTempleTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgForestTempleTitleCardGERTex "__OTR__textures/g_pn_01/gForestTempleTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gForestTempleTitleCardGERTex[] = dgForestTempleTitleCardGERTex;
|
||||
#else
|
||||
static const char gForestTempleTitleCardGERTex[] __attribute__((aligned (2))) = dgForestTempleTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgForestTempleTitleCardFRATex "__OTR__textures/g_pn_01/gForestTempleTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gForestTempleTitleCardFRATex[] = dgForestTempleTitleCardFRATex;
|
||||
#else
|
||||
static const char gForestTempleTitleCardFRATex[] __attribute__((aligned (2))) = dgForestTempleTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgForestTempleTitleCardENGTex "__OTR__textures/g_pn_01/gForestTempleTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gForestTempleTitleCardENGTex[] = dgForestTempleTitleCardENGTex;
|
||||
|
||||
#define dgForestTempleTitleCardGERTex "__OTR__textures/g_pn_01/gForestTempleTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gForestTempleTitleCardGERTex[] = dgForestTempleTitleCardGERTex;
|
||||
|
||||
#define dgForestTempleTitleCardFRATex "__OTR__textures/g_pn_01/gForestTempleTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gForestTempleTitleCardFRATex[] = dgForestTempleTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgShadowTempleTitleCardENGTex "__OTR__textures/g_pn_02/gShadowTempleTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gShadowTempleTitleCardENGTex[] = dgShadowTempleTitleCardENGTex;
|
||||
#else
|
||||
static const char gShadowTempleTitleCardENGTex[] __attribute__((aligned (2))) = dgShadowTempleTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgShadowTempleTitleCardGERTex "__OTR__textures/g_pn_02/gShadowTempleTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gShadowTempleTitleCardGERTex[] = dgShadowTempleTitleCardGERTex;
|
||||
#else
|
||||
static const char gShadowTempleTitleCardGERTex[] __attribute__((aligned (2))) = dgShadowTempleTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgShadowTempleTitleCardFRATex "__OTR__textures/g_pn_02/gShadowTempleTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gShadowTempleTitleCardFRATex[] = dgShadowTempleTitleCardFRATex;
|
||||
#else
|
||||
static const char gShadowTempleTitleCardFRATex[] __attribute__((aligned (2))) = dgShadowTempleTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgShadowTempleTitleCardENGTex "__OTR__textures/g_pn_02/gShadowTempleTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gShadowTempleTitleCardENGTex[] = dgShadowTempleTitleCardENGTex;
|
||||
|
||||
#define dgShadowTempleTitleCardGERTex "__OTR__textures/g_pn_02/gShadowTempleTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gShadowTempleTitleCardGERTex[] = dgShadowTempleTitleCardGERTex;
|
||||
|
||||
#define dgShadowTempleTitleCardFRATex "__OTR__textures/g_pn_02/gShadowTempleTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gShadowTempleTitleCardFRATex[] = dgShadowTempleTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgFireTempleTitleCardENGTex "__OTR__textures/g_pn_03/gFireTempleTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gFireTempleTitleCardENGTex[] = dgFireTempleTitleCardENGTex;
|
||||
#else
|
||||
static const char gFireTempleTitleCardENGTex[] __attribute__((aligned (2))) = dgFireTempleTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgFireTempleTitleCardGERTex "__OTR__textures/g_pn_03/gFireTempleTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gFireTempleTitleCardGERTex[] = dgFireTempleTitleCardGERTex;
|
||||
#else
|
||||
static const char gFireTempleTitleCardGERTex[] __attribute__((aligned (2))) = dgFireTempleTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgFireTempleTitleCardFRATex "__OTR__textures/g_pn_03/gFireTempleTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gFireTempleTitleCardFRATex[] = dgFireTempleTitleCardFRATex;
|
||||
#else
|
||||
static const char gFireTempleTitleCardFRATex[] __attribute__((aligned (2))) = dgFireTempleTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgFireTempleTitleCardENGTex "__OTR__textures/g_pn_03/gFireTempleTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gFireTempleTitleCardENGTex[] = dgFireTempleTitleCardENGTex;
|
||||
|
||||
#define dgFireTempleTitleCardGERTex "__OTR__textures/g_pn_03/gFireTempleTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gFireTempleTitleCardGERTex[] = dgFireTempleTitleCardGERTex;
|
||||
|
||||
#define dgFireTempleTitleCardFRATex "__OTR__textures/g_pn_03/gFireTempleTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gFireTempleTitleCardFRATex[] = dgFireTempleTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgWaterTempleTitleCardENGTex "__OTR__textures/g_pn_04/gWaterTempleTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gWaterTempleTitleCardENGTex[] = dgWaterTempleTitleCardENGTex;
|
||||
#else
|
||||
static const char gWaterTempleTitleCardENGTex[] __attribute__((aligned (2))) = dgWaterTempleTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgWaterTempleTitleCardGERTex "__OTR__textures/g_pn_04/gWaterTempleTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gWaterTempleTitleCardGERTex[] = dgWaterTempleTitleCardGERTex;
|
||||
#else
|
||||
static const char gWaterTempleTitleCardGERTex[] __attribute__((aligned (2))) = dgWaterTempleTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgWaterTempleTitleCardFRATex "__OTR__textures/g_pn_04/gWaterTempleTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gWaterTempleTitleCardFRATex[] = dgWaterTempleTitleCardFRATex;
|
||||
#else
|
||||
static const char gWaterTempleTitleCardFRATex[] __attribute__((aligned (2))) = dgWaterTempleTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgWaterTempleTitleCardENGTex "__OTR__textures/g_pn_04/gWaterTempleTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gWaterTempleTitleCardENGTex[] = dgWaterTempleTitleCardENGTex;
|
||||
|
||||
#define dgWaterTempleTitleCardGERTex "__OTR__textures/g_pn_04/gWaterTempleTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gWaterTempleTitleCardGERTex[] = dgWaterTempleTitleCardGERTex;
|
||||
|
||||
#define dgWaterTempleTitleCardFRATex "__OTR__textures/g_pn_04/gWaterTempleTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gWaterTempleTitleCardFRATex[] = dgWaterTempleTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgSpiritTempleTitleCardENGTex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gSpiritTempleTitleCardENGTex[] = dgSpiritTempleTitleCardENGTex;
|
||||
#else
|
||||
static const char gSpiritTempleTitleCardENGTex[] __attribute__((aligned (2))) = dgSpiritTempleTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgSpiritTempleTitleCardGERTex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gSpiritTempleTitleCardGERTex[] = dgSpiritTempleTitleCardGERTex;
|
||||
#else
|
||||
static const char gSpiritTempleTitleCardGERTex[] __attribute__((aligned (2))) = dgSpiritTempleTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgSpiritTempleTitleCardFRATex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gSpiritTempleTitleCardFRATex[] = dgSpiritTempleTitleCardFRATex;
|
||||
#else
|
||||
static const char gSpiritTempleTitleCardFRATex[] __attribute__((aligned (2))) = dgSpiritTempleTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgSpiritTempleTitleCardENGTex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gSpiritTempleTitleCardENGTex[] = dgSpiritTempleTitleCardENGTex;
|
||||
|
||||
#define dgSpiritTempleTitleCardGERTex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gSpiritTempleTitleCardGERTex[] = dgSpiritTempleTitleCardGERTex;
|
||||
|
||||
#define dgSpiritTempleTitleCardFRATex "__OTR__textures/g_pn_05/gSpiritTempleTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gSpiritTempleTitleCardFRATex[] = dgSpiritTempleTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgDekuTreeTitleCardENGTex "__OTR__textures/g_pn_06/gDekuTreeTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDekuTreeTitleCardENGTex[] = dgDekuTreeTitleCardENGTex;
|
||||
#else
|
||||
static const char gDekuTreeTitleCardENGTex[] __attribute__((aligned (2))) = dgDekuTreeTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgDekuTreeTitleCardGERTex "__OTR__textures/g_pn_06/gDekuTreeTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDekuTreeTitleCardGERTex[] = dgDekuTreeTitleCardGERTex;
|
||||
#else
|
||||
static const char gDekuTreeTitleCardGERTex[] __attribute__((aligned (2))) = dgDekuTreeTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgDekuTreeTitleCardFRATex "__OTR__textures/g_pn_06/gDekuTreeTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDekuTreeTitleCardFRATex[] = dgDekuTreeTitleCardFRATex;
|
||||
#else
|
||||
static const char gDekuTreeTitleCardFRATex[] __attribute__((aligned (2))) = dgDekuTreeTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgDekuTreeTitleCardENGTex "__OTR__textures/g_pn_06/gDekuTreeTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gDekuTreeTitleCardENGTex[] = dgDekuTreeTitleCardENGTex;
|
||||
|
||||
#define dgDekuTreeTitleCardGERTex "__OTR__textures/g_pn_06/gDekuTreeTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gDekuTreeTitleCardGERTex[] = dgDekuTreeTitleCardGERTex;
|
||||
|
||||
#define dgDekuTreeTitleCardFRATex "__OTR__textures/g_pn_06/gDekuTreeTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gDekuTreeTitleCardFRATex[] = dgDekuTreeTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgJabuJabuTitleCardENGTex "__OTR__textures/g_pn_07/gJabuJabuTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gJabuJabuTitleCardENGTex[] = dgJabuJabuTitleCardENGTex;
|
||||
#else
|
||||
static const char gJabuJabuTitleCardENGTex[] __attribute__((aligned (2))) = dgJabuJabuTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgJabuJabuTitleCardGERTex "__OTR__textures/g_pn_07/gJabuJabuTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gJabuJabuTitleCardGERTex[] = dgJabuJabuTitleCardGERTex;
|
||||
#else
|
||||
static const char gJabuJabuTitleCardGERTex[] __attribute__((aligned (2))) = dgJabuJabuTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgJabuJabuTitleCardFRATex "__OTR__textures/g_pn_07/gJabuJabuTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gJabuJabuTitleCardFRATex[] = dgJabuJabuTitleCardFRATex;
|
||||
#else
|
||||
static const char gJabuJabuTitleCardFRATex[] __attribute__((aligned (2))) = dgJabuJabuTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgJabuJabuTitleCardENGTex "__OTR__textures/g_pn_07/gJabuJabuTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gJabuJabuTitleCardENGTex[] = dgJabuJabuTitleCardENGTex;
|
||||
|
||||
#define dgJabuJabuTitleCardGERTex "__OTR__textures/g_pn_07/gJabuJabuTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gJabuJabuTitleCardGERTex[] = dgJabuJabuTitleCardGERTex;
|
||||
|
||||
#define dgJabuJabuTitleCardFRATex "__OTR__textures/g_pn_07/gJabuJabuTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gJabuJabuTitleCardFRATex[] = dgJabuJabuTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgDodongosCavernTitleCardENGTex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDodongosCavernTitleCardENGTex[] = dgDodongosCavernTitleCardENGTex;
|
||||
#else
|
||||
static const char gDodongosCavernTitleCardENGTex[] __attribute__((aligned (2))) = dgDodongosCavernTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgDodongosCavernTitleCardGERTex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDodongosCavernTitleCardGERTex[] = dgDodongosCavernTitleCardGERTex;
|
||||
#else
|
||||
static const char gDodongosCavernTitleCardGERTex[] __attribute__((aligned (2))) = dgDodongosCavernTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgDodongosCavernTitleCardFRATex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDodongosCavernTitleCardFRATex[] = dgDodongosCavernTitleCardFRATex;
|
||||
#else
|
||||
static const char gDodongosCavernTitleCardFRATex[] __attribute__((aligned (2))) = dgDodongosCavernTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgDodongosCavernTitleCardENGTex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gDodongosCavernTitleCardENGTex[] = dgDodongosCavernTitleCardENGTex;
|
||||
|
||||
#define dgDodongosCavernTitleCardGERTex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gDodongosCavernTitleCardGERTex[] = dgDodongosCavernTitleCardGERTex;
|
||||
|
||||
#define dgDodongosCavernTitleCardFRATex "__OTR__textures/g_pn_08/gDodongosCavernTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gDodongosCavernTitleCardFRATex[] = dgDodongosCavernTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgInsideGanonsCastleTitleCardENGTex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gInsideGanonsCastleTitleCardENGTex[] = dgInsideGanonsCastleTitleCardENGTex;
|
||||
#else
|
||||
static const char gInsideGanonsCastleTitleCardENGTex[] __attribute__((aligned (2))) = dgInsideGanonsCastleTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgInsideGanonsCastleTitleCardGERTex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gInsideGanonsCastleTitleCardGERTex[] = dgInsideGanonsCastleTitleCardGERTex;
|
||||
#else
|
||||
static const char gInsideGanonsCastleTitleCardGERTex[] __attribute__((aligned (2))) = dgInsideGanonsCastleTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgInsideGanonsCastleTitleCardFRATex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gInsideGanonsCastleTitleCardFRATex[] = dgInsideGanonsCastleTitleCardFRATex;
|
||||
#else
|
||||
static const char gInsideGanonsCastleTitleCardFRATex[] __attribute__((aligned (2))) = dgInsideGanonsCastleTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgInsideGanonsCastleTitleCardENGTex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gInsideGanonsCastleTitleCardENGTex[] = dgInsideGanonsCastleTitleCardENGTex;
|
||||
|
||||
#define dgInsideGanonsCastleTitleCardGERTex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gInsideGanonsCastleTitleCardGERTex[] = dgInsideGanonsCastleTitleCardGERTex;
|
||||
|
||||
#define dgInsideGanonsCastleTitleCardFRATex "__OTR__textures/g_pn_09/gInsideGanonsCastleTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gInsideGanonsCastleTitleCardFRATex[] = dgInsideGanonsCastleTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgIceCavernTitleCardENGTex "__OTR__textures/g_pn_10/gIceCavernTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gIceCavernTitleCardENGTex[] = dgIceCavernTitleCardENGTex;
|
||||
#else
|
||||
static const char gIceCavernTitleCardENGTex[] __attribute__((aligned (2))) = dgIceCavernTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgIceCavernTitleCardGERTex "__OTR__textures/g_pn_10/gIceCavernTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gIceCavernTitleCardGERTex[] = dgIceCavernTitleCardGERTex;
|
||||
#else
|
||||
static const char gIceCavernTitleCardGERTex[] __attribute__((aligned (2))) = dgIceCavernTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgIceCavernTitleCardFRATex "__OTR__textures/g_pn_10/gIceCavernTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gIceCavernTitleCardFRATex[] = dgIceCavernTitleCardFRATex;
|
||||
#else
|
||||
static const char gIceCavernTitleCardFRATex[] __attribute__((aligned (2))) = dgIceCavernTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgIceCavernTitleCardENGTex "__OTR__textures/g_pn_10/gIceCavernTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gIceCavernTitleCardENGTex[] = dgIceCavernTitleCardENGTex;
|
||||
|
||||
#define dgIceCavernTitleCardGERTex "__OTR__textures/g_pn_10/gIceCavernTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gIceCavernTitleCardGERTex[] = dgIceCavernTitleCardGERTex;
|
||||
|
||||
#define dgIceCavernTitleCardFRATex "__OTR__textures/g_pn_10/gIceCavernTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gIceCavernTitleCardFRATex[] = dgIceCavernTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgGERudoTrainingGroundTitleCardENGTex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGERudoTrainingGroundTitleCardENGTex[] = dgGERudoTrainingGroundTitleCardENGTex;
|
||||
#else
|
||||
static const char gGERudoTrainingGroundTitleCardENGTex[] __attribute__((aligned (2))) = dgGERudoTrainingGroundTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgGERudoTrainingGroundTitleCardGERTex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGERudoTrainingGroundTitleCardGERTex[] = dgGERudoTrainingGroundTitleCardGERTex;
|
||||
#else
|
||||
static const char gGERudoTrainingGroundTitleCardGERTex[] __attribute__((aligned (2))) = dgGERudoTrainingGroundTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgGERudoTrainingGroundTitleCardFRATex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGERudoTrainingGroundTitleCardFRATex[] = dgGERudoTrainingGroundTitleCardFRATex;
|
||||
#else
|
||||
static const char gGERudoTrainingGroundTitleCardFRATex[] __attribute__((aligned (2))) = dgGERudoTrainingGroundTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgGERudoTrainingGroundTitleCardENGTex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gGERudoTrainingGroundTitleCardENGTex[] = dgGERudoTrainingGroundTitleCardENGTex;
|
||||
|
||||
#define dgGERudoTrainingGroundTitleCardGERTex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gGERudoTrainingGroundTitleCardGERTex[] = dgGERudoTrainingGroundTitleCardGERTex;
|
||||
|
||||
#define dgGERudoTrainingGroundTitleCardFRATex "__OTR__textures/g_pn_11/gGERudoTrainingGroundTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gGERudoTrainingGroundTitleCardFRATex[] = dgGERudoTrainingGroundTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgCastleCourtyardTitleCardENGTex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gCastleCourtyardTitleCardENGTex[] = dgCastleCourtyardTitleCardENGTex;
|
||||
#else
|
||||
static const char gCastleCourtyardTitleCardENGTex[] __attribute__((aligned (2))) = dgCastleCourtyardTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgCastleCourtyardTitleCardGERTex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gCastleCourtyardTitleCardGERTex[] = dgCastleCourtyardTitleCardGERTex;
|
||||
#else
|
||||
static const char gCastleCourtyardTitleCardGERTex[] __attribute__((aligned (2))) = dgCastleCourtyardTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgCastleCourtyardTitleCardFRATex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gCastleCourtyardTitleCardFRATex[] = dgCastleCourtyardTitleCardFRATex;
|
||||
#else
|
||||
static const char gCastleCourtyardTitleCardFRATex[] __attribute__((aligned (2))) = dgCastleCourtyardTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgCastleCourtyardTitleCardENGTex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gCastleCourtyardTitleCardENGTex[] = dgCastleCourtyardTitleCardENGTex;
|
||||
|
||||
#define dgCastleCourtyardTitleCardGERTex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gCastleCourtyardTitleCardGERTex[] = dgCastleCourtyardTitleCardGERTex;
|
||||
|
||||
#define dgCastleCourtyardTitleCardFRATex "__OTR__textures/g_pn_12/gCastleCourtyardTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gCastleCourtyardTitleCardFRATex[] = dgCastleCourtyardTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgGreatFairysFountainTitleCardENGTex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGreatFairysFountainTitleCardENGTex[] = dgGreatFairysFountainTitleCardENGTex;
|
||||
#else
|
||||
static const char gGreatFairysFountainTitleCardENGTex[] __attribute__((aligned (2))) = dgGreatFairysFountainTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgGreatFairysFountainTitleCardGERTex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGreatFairysFountainTitleCardGERTex[] = dgGreatFairysFountainTitleCardGERTex;
|
||||
#else
|
||||
static const char gGreatFairysFountainTitleCardGERTex[] __attribute__((aligned (2))) = dgGreatFairysFountainTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgGreatFairysFountainTitleCardFRATex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGreatFairysFountainTitleCardFRATex[] = dgGreatFairysFountainTitleCardFRATex;
|
||||
#else
|
||||
static const char gGreatFairysFountainTitleCardFRATex[] __attribute__((aligned (2))) = dgGreatFairysFountainTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgGreatFairysFountainTitleCardENGTex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gGreatFairysFountainTitleCardENGTex[] = dgGreatFairysFountainTitleCardENGTex;
|
||||
|
||||
#define dgGreatFairysFountainTitleCardGERTex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gGreatFairysFountainTitleCardGERTex[] = dgGreatFairysFountainTitleCardGERTex;
|
||||
|
||||
#define dgGreatFairysFountainTitleCardFRATex "__OTR__textures/g_pn_13/gGreatFairysFountainTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gGreatFairysFountainTitleCardFRATex[] = dgGreatFairysFountainTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgChamberOfTheSagesTitleCardENGTex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gChamberOfTheSagesTitleCardENGTex[] = dgChamberOfTheSagesTitleCardENGTex;
|
||||
#else
|
||||
static const char gChamberOfTheSagesTitleCardENGTex[] __attribute__((aligned (2))) = dgChamberOfTheSagesTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgChamberOfTheSagesTitleCardGERTex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gChamberOfTheSagesTitleCardGERTex[] = dgChamberOfTheSagesTitleCardGERTex;
|
||||
#else
|
||||
static const char gChamberOfTheSagesTitleCardGERTex[] __attribute__((aligned (2))) = dgChamberOfTheSagesTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgChamberOfTheSagesTitleCardFRATex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gChamberOfTheSagesTitleCardFRATex[] = dgChamberOfTheSagesTitleCardFRATex;
|
||||
#else
|
||||
static const char gChamberOfTheSagesTitleCardFRATex[] __attribute__((aligned (2))) = dgChamberOfTheSagesTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgChamberOfTheSagesTitleCardENGTex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gChamberOfTheSagesTitleCardENGTex[] = dgChamberOfTheSagesTitleCardENGTex;
|
||||
|
||||
#define dgChamberOfTheSagesTitleCardGERTex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gChamberOfTheSagesTitleCardGERTex[] = dgChamberOfTheSagesTitleCardGERTex;
|
||||
|
||||
#define dgChamberOfTheSagesTitleCardFRATex "__OTR__textures/g_pn_14/gChamberOfTheSagesTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gChamberOfTheSagesTitleCardFRATex[] = dgChamberOfTheSagesTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgShootingGalleryTitleCardENGTex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gShootingGalleryTitleCardENGTex[] = dgShootingGalleryTitleCardENGTex;
|
||||
#else
|
||||
static const char gShootingGalleryTitleCardENGTex[] __attribute__((aligned (2))) = dgShootingGalleryTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgShootingGalleryTitleCardGERTex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gShootingGalleryTitleCardGERTex[] = dgShootingGalleryTitleCardGERTex;
|
||||
#else
|
||||
static const char gShootingGalleryTitleCardGERTex[] __attribute__((aligned (2))) = dgShootingGalleryTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgShootingGalleryTitleCardFRATex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gShootingGalleryTitleCardFRATex[] = dgShootingGalleryTitleCardFRATex;
|
||||
#else
|
||||
static const char gShootingGalleryTitleCardFRATex[] __attribute__((aligned (2))) = dgShootingGalleryTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgShootingGalleryTitleCardENGTex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gShootingGalleryTitleCardENGTex[] = dgShootingGalleryTitleCardENGTex;
|
||||
|
||||
#define dgShootingGalleryTitleCardGERTex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gShootingGalleryTitleCardGERTex[] = dgShootingGalleryTitleCardGERTex;
|
||||
|
||||
#define dgShootingGalleryTitleCardFRATex "__OTR__textures/g_pn_15/gShootingGalleryTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gShootingGalleryTitleCardFRATex[] = dgShootingGalleryTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgTempleOfTimeTitleCardENGTex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gTempleOfTimeTitleCardENGTex[] = dgTempleOfTimeTitleCardENGTex;
|
||||
#else
|
||||
static const char gTempleOfTimeTitleCardENGTex[] __attribute__((aligned (2))) = dgTempleOfTimeTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgTempleOfTimeTitleCardGERTex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gTempleOfTimeTitleCardGERTex[] = dgTempleOfTimeTitleCardGERTex;
|
||||
#else
|
||||
static const char gTempleOfTimeTitleCardGERTex[] __attribute__((aligned (2))) = dgTempleOfTimeTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgTempleOfTimeTitleCardFRATex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gTempleOfTimeTitleCardFRATex[] = dgTempleOfTimeTitleCardFRATex;
|
||||
#else
|
||||
static const char gTempleOfTimeTitleCardFRATex[] __attribute__((aligned (2))) = dgTempleOfTimeTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgTempleOfTimeTitleCardENGTex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gTempleOfTimeTitleCardENGTex[] = dgTempleOfTimeTitleCardENGTex;
|
||||
|
||||
#define dgTempleOfTimeTitleCardGERTex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gTempleOfTimeTitleCardGERTex[] = dgTempleOfTimeTitleCardGERTex;
|
||||
|
||||
#define dgTempleOfTimeTitleCardFRATex "__OTR__textures/g_pn_16/gTempleOfTimeTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gTempleOfTimeTitleCardFRATex[] = dgTempleOfTimeTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgMarketTitleCardENGTex "__OTR__textures/g_pn_17/gMarketTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gMarketTitleCardENGTex[] = dgMarketTitleCardENGTex;
|
||||
#else
|
||||
static const char gMarketTitleCardENGTex[] __attribute__((aligned (2))) = dgMarketTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgMarketTitleCardGERTex "__OTR__textures/g_pn_17/gMarketTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gMarketTitleCardGERTex[] = dgMarketTitleCardGERTex;
|
||||
#else
|
||||
static const char gMarketTitleCardGERTex[] __attribute__((aligned (2))) = dgMarketTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgMarketTitleCardFRATex "__OTR__textures/g_pn_17/gMarketTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gMarketTitleCardFRATex[] = dgMarketTitleCardFRATex;
|
||||
#else
|
||||
static const char gMarketTitleCardFRATex[] __attribute__((aligned (2))) = dgMarketTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgMarketTitleCardENGTex "__OTR__textures/g_pn_17/gMarketTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gMarketTitleCardENGTex[] = dgMarketTitleCardENGTex;
|
||||
|
||||
#define dgMarketTitleCardGERTex "__OTR__textures/g_pn_17/gMarketTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gMarketTitleCardGERTex[] = dgMarketTitleCardGERTex;
|
||||
|
||||
#define dgMarketTitleCardFRATex "__OTR__textures/g_pn_17/gMarketTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gMarketTitleCardFRATex[] = dgMarketTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgBackAlleyTitleCardENGTex "__OTR__textures/g_pn_18/gBackAlleyTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBackAlleyTitleCardENGTex[] = dgBackAlleyTitleCardENGTex;
|
||||
#else
|
||||
static const char gBackAlleyTitleCardENGTex[] __attribute__((aligned (2))) = dgBackAlleyTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgBackAlleyTitleCardGERTex "__OTR__textures/g_pn_18/gBackAlleyTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBackAlleyTitleCardGERTex[] = dgBackAlleyTitleCardGERTex;
|
||||
#else
|
||||
static const char gBackAlleyTitleCardGERTex[] __attribute__((aligned (2))) = dgBackAlleyTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgBackAlleyTitleCardFRATex "__OTR__textures/g_pn_18/gBackAlleyTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBackAlleyTitleCardFRATex[] = dgBackAlleyTitleCardFRATex;
|
||||
#else
|
||||
static const char gBackAlleyTitleCardFRATex[] __attribute__((aligned (2))) = dgBackAlleyTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgBackAlleyTitleCardENGTex "__OTR__textures/g_pn_18/gBackAlleyTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gBackAlleyTitleCardENGTex[] = dgBackAlleyTitleCardENGTex;
|
||||
|
||||
#define dgBackAlleyTitleCardGERTex "__OTR__textures/g_pn_18/gBackAlleyTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gBackAlleyTitleCardGERTex[] = dgBackAlleyTitleCardGERTex;
|
||||
|
||||
#define dgBackAlleyTitleCardFRATex "__OTR__textures/g_pn_18/gBackAlleyTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gBackAlleyTitleCardFRATex[] = dgBackAlleyTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgKokiriShopTitleCardENGTex "__OTR__textures/g_pn_19/gKokiriShopTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gKokiriShopTitleCardENGTex[] = dgKokiriShopTitleCardENGTex;
|
||||
#else
|
||||
static const char gKokiriShopTitleCardENGTex[] __attribute__((aligned (2))) = dgKokiriShopTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgKokiriShopTitleCardGERTex "__OTR__textures/g_pn_19/gKokiriShopTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gKokiriShopTitleCardGERTex[] = dgKokiriShopTitleCardGERTex;
|
||||
#else
|
||||
static const char gKokiriShopTitleCardGERTex[] __attribute__((aligned (2))) = dgKokiriShopTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgKokiriShopTitleCardFRATex "__OTR__textures/g_pn_19/gKokiriShopTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gKokiriShopTitleCardFRATex[] = dgKokiriShopTitleCardFRATex;
|
||||
#else
|
||||
static const char gKokiriShopTitleCardFRATex[] __attribute__((aligned (2))) = dgKokiriShopTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgKokiriShopTitleCardENGTex "__OTR__textures/g_pn_19/gKokiriShopTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gKokiriShopTitleCardENGTex[] = dgKokiriShopTitleCardENGTex;
|
||||
|
||||
#define dgKokiriShopTitleCardGERTex "__OTR__textures/g_pn_19/gKokiriShopTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gKokiriShopTitleCardGERTex[] = dgKokiriShopTitleCardGERTex;
|
||||
|
||||
#define dgKokiriShopTitleCardFRATex "__OTR__textures/g_pn_19/gKokiriShopTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gKokiriShopTitleCardFRATex[] = dgKokiriShopTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgGoronShopTitleCardENGTex "__OTR__textures/g_pn_20/gGoronShopTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGoronShopTitleCardENGTex[] = dgGoronShopTitleCardENGTex;
|
||||
#else
|
||||
static const char gGoronShopTitleCardENGTex[] __attribute__((aligned (2))) = dgGoronShopTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgGoronShopTitleCardGERTex "__OTR__textures/g_pn_20/gGoronShopTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGoronShopTitleCardGERTex[] = dgGoronShopTitleCardGERTex;
|
||||
#else
|
||||
static const char gGoronShopTitleCardGERTex[] __attribute__((aligned (2))) = dgGoronShopTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgGoronShopTitleCardFRATex "__OTR__textures/g_pn_20/gGoronShopTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGoronShopTitleCardFRATex[] = dgGoronShopTitleCardFRATex;
|
||||
#else
|
||||
static const char gGoronShopTitleCardFRATex[] __attribute__((aligned (2))) = dgGoronShopTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgGoronShopTitleCardENGTex "__OTR__textures/g_pn_20/gGoronShopTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gGoronShopTitleCardENGTex[] = dgGoronShopTitleCardENGTex;
|
||||
|
||||
#define dgGoronShopTitleCardGERTex "__OTR__textures/g_pn_20/gGoronShopTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gGoronShopTitleCardGERTex[] = dgGoronShopTitleCardGERTex;
|
||||
|
||||
#define dgGoronShopTitleCardFRATex "__OTR__textures/g_pn_20/gGoronShopTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gGoronShopTitleCardFRATex[] = dgGoronShopTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgZoraShopTitleCardENGTex "__OTR__textures/g_pn_21/gZoraShopTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZoraShopTitleCardENGTex[] = dgZoraShopTitleCardENGTex;
|
||||
#else
|
||||
static const char gZoraShopTitleCardENGTex[] __attribute__((aligned (2))) = dgZoraShopTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgZoraShopTitleCardGERTex "__OTR__textures/g_pn_21/gZoraShopTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZoraShopTitleCardGERTex[] = dgZoraShopTitleCardGERTex;
|
||||
#else
|
||||
static const char gZoraShopTitleCardGERTex[] __attribute__((aligned (2))) = dgZoraShopTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgZoraShopTitleCardFRATex "__OTR__textures/g_pn_21/gZoraShopTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZoraShopTitleCardFRATex[] = dgZoraShopTitleCardFRATex;
|
||||
#else
|
||||
static const char gZoraShopTitleCardFRATex[] __attribute__((aligned (2))) = dgZoraShopTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgZoraShopTitleCardENGTex "__OTR__textures/g_pn_21/gZoraShopTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gZoraShopTitleCardENGTex[] = dgZoraShopTitleCardENGTex;
|
||||
|
||||
#define dgZoraShopTitleCardGERTex "__OTR__textures/g_pn_21/gZoraShopTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gZoraShopTitleCardGERTex[] = dgZoraShopTitleCardGERTex;
|
||||
|
||||
#define dgZoraShopTitleCardFRATex "__OTR__textures/g_pn_21/gZoraShopTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gZoraShopTitleCardFRATex[] = dgZoraShopTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgHouseOfSkulltulaTitleCardENGTex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHouseOfSkulltulaTitleCardENGTex[] = dgHouseOfSkulltulaTitleCardENGTex;
|
||||
#else
|
||||
static const char gHouseOfSkulltulaTitleCardENGTex[] __attribute__((aligned (2))) = dgHouseOfSkulltulaTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgHouseOfSkulltulaTitleCardGERTex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHouseOfSkulltulaTitleCardGERTex[] = dgHouseOfSkulltulaTitleCardGERTex;
|
||||
#else
|
||||
static const char gHouseOfSkulltulaTitleCardGERTex[] __attribute__((aligned (2))) = dgHouseOfSkulltulaTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgHouseOfSkulltulaTitleCardFRATex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHouseOfSkulltulaTitleCardFRATex[] = dgHouseOfSkulltulaTitleCardFRATex;
|
||||
#else
|
||||
static const char gHouseOfSkulltulaTitleCardFRATex[] __attribute__((aligned (2))) = dgHouseOfSkulltulaTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgHouseOfSkulltulaTitleCardENGTex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gHouseOfSkulltulaTitleCardENGTex[] = dgHouseOfSkulltulaTitleCardENGTex;
|
||||
|
||||
#define dgHouseOfSkulltulaTitleCardGERTex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gHouseOfSkulltulaTitleCardGERTex[] = dgHouseOfSkulltulaTitleCardGERTex;
|
||||
|
||||
#define dgHouseOfSkulltulaTitleCardFRATex "__OTR__textures/g_pn_22/gHouseOfSkulltulaTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gHouseOfSkulltulaTitleCardFRATex[] = dgHouseOfSkulltulaTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgBazaarTitleCardENGTex "__OTR__textures/g_pn_23/gBazaarTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBazaarTitleCardENGTex[] = dgBazaarTitleCardENGTex;
|
||||
#else
|
||||
static const char gBazaarTitleCardENGTex[] __attribute__((aligned (2))) = dgBazaarTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgBazaarTitleCardGERTex "__OTR__textures/g_pn_23/gBazaarTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBazaarTitleCardGERTex[] = dgBazaarTitleCardGERTex;
|
||||
#else
|
||||
static const char gBazaarTitleCardGERTex[] __attribute__((aligned (2))) = dgBazaarTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgBazaarTitleCardFRATex "__OTR__textures/g_pn_23/gBazaarTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBazaarTitleCardFRATex[] = dgBazaarTitleCardFRATex;
|
||||
#else
|
||||
static const char gBazaarTitleCardFRATex[] __attribute__((aligned (2))) = dgBazaarTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgBazaarTitleCardENGTex "__OTR__textures/g_pn_23/gBazaarTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gBazaarTitleCardENGTex[] = dgBazaarTitleCardENGTex;
|
||||
|
||||
#define dgBazaarTitleCardGERTex "__OTR__textures/g_pn_23/gBazaarTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gBazaarTitleCardGERTex[] = dgBazaarTitleCardGERTex;
|
||||
|
||||
#define dgBazaarTitleCardFRATex "__OTR__textures/g_pn_23/gBazaarTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gBazaarTitleCardFRATex[] = dgBazaarTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgPotionShopTitleCardENGTex "__OTR__textures/g_pn_24/gPotionShopTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gPotionShopTitleCardENGTex[] = dgPotionShopTitleCardENGTex;
|
||||
#else
|
||||
static const char gPotionShopTitleCardENGTex[] __attribute__((aligned (2))) = dgPotionShopTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgPotionShopTitleCardGERTex "__OTR__textures/g_pn_24/gPotionShopTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gPotionShopTitleCardGERTex[] = dgPotionShopTitleCardGERTex;
|
||||
#else
|
||||
static const char gPotionShopTitleCardGERTex[] __attribute__((aligned (2))) = dgPotionShopTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgPotionShopTitleCardFRATex "__OTR__textures/g_pn_24/gPotionShopTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gPotionShopTitleCardFRATex[] = dgPotionShopTitleCardFRATex;
|
||||
#else
|
||||
static const char gPotionShopTitleCardFRATex[] __attribute__((aligned (2))) = dgPotionShopTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgPotionShopTitleCardENGTex "__OTR__textures/g_pn_24/gPotionShopTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gPotionShopTitleCardENGTex[] = dgPotionShopTitleCardENGTex;
|
||||
|
||||
#define dgPotionShopTitleCardGERTex "__OTR__textures/g_pn_24/gPotionShopTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gPotionShopTitleCardGERTex[] = dgPotionShopTitleCardGERTex;
|
||||
|
||||
#define dgPotionShopTitleCardFRATex "__OTR__textures/g_pn_24/gPotionShopTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gPotionShopTitleCardFRATex[] = dgPotionShopTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgGravekeepersHutTitleCardENGTex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGravekeepersHutTitleCardENGTex[] = dgGravekeepersHutTitleCardENGTex;
|
||||
#else
|
||||
static const char gGravekeepersHutTitleCardENGTex[] __attribute__((aligned (2))) = dgGravekeepersHutTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgGravekeepersHutTitleCardGERTex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGravekeepersHutTitleCardGERTex[] = dgGravekeepersHutTitleCardGERTex;
|
||||
#else
|
||||
static const char gGravekeepersHutTitleCardGERTex[] __attribute__((aligned (2))) = dgGravekeepersHutTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgGravekeepersHutTitleCardFRATex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGravekeepersHutTitleCardFRATex[] = dgGravekeepersHutTitleCardFRATex;
|
||||
#else
|
||||
static const char gGravekeepersHutTitleCardFRATex[] __attribute__((aligned (2))) = dgGravekeepersHutTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgGravekeepersHutTitleCardENGTex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gGravekeepersHutTitleCardENGTex[] = dgGravekeepersHutTitleCardENGTex;
|
||||
|
||||
#define dgGravekeepersHutTitleCardGERTex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gGravekeepersHutTitleCardGERTex[] = dgGravekeepersHutTitleCardGERTex;
|
||||
|
||||
#define dgGravekeepersHutTitleCardFRATex "__OTR__textures/g_pn_25/gGravekeepersHutTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gGravekeepersHutTitleCardFRATex[] = dgGravekeepersHutTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgLakesideLaboratoryTitleCardENGTex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLakesideLaboratoryTitleCardENGTex[] = dgLakesideLaboratoryTitleCardENGTex;
|
||||
#else
|
||||
static const char gLakesideLaboratoryTitleCardENGTex[] __attribute__((aligned (2))) = dgLakesideLaboratoryTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgLakesideLaboratoryTitleCardGERTex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLakesideLaboratoryTitleCardGERTex[] = dgLakesideLaboratoryTitleCardGERTex;
|
||||
#else
|
||||
static const char gLakesideLaboratoryTitleCardGERTex[] __attribute__((aligned (2))) = dgLakesideLaboratoryTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgLakesideLaboratoryTitleCardFRATex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLakesideLaboratoryTitleCardFRATex[] = dgLakesideLaboratoryTitleCardFRATex;
|
||||
#else
|
||||
static const char gLakesideLaboratoryTitleCardFRATex[] __attribute__((aligned (2))) = dgLakesideLaboratoryTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgLakesideLaboratoryTitleCardENGTex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gLakesideLaboratoryTitleCardENGTex[] = dgLakesideLaboratoryTitleCardENGTex;
|
||||
|
||||
#define dgLakesideLaboratoryTitleCardGERTex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gLakesideLaboratoryTitleCardGERTex[] = dgLakesideLaboratoryTitleCardGERTex;
|
||||
|
||||
#define dgLakesideLaboratoryTitleCardFRATex "__OTR__textures/g_pn_26/gLakesideLaboratoryTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gLakesideLaboratoryTitleCardFRATex[] = dgLakesideLaboratoryTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgHyruleFieldTitleCardENGTex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHyruleFieldTitleCardENGTex[] = dgHyruleFieldTitleCardENGTex;
|
||||
#else
|
||||
static const char gHyruleFieldTitleCardENGTex[] __attribute__((aligned (2))) = dgHyruleFieldTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgHyruleFieldTitleCardGERTex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHyruleFieldTitleCardGERTex[] = dgHyruleFieldTitleCardGERTex;
|
||||
#else
|
||||
static const char gHyruleFieldTitleCardGERTex[] __attribute__((aligned (2))) = dgHyruleFieldTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgHyruleFieldTitleCardFRATex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHyruleFieldTitleCardFRATex[] = dgHyruleFieldTitleCardFRATex;
|
||||
#else
|
||||
static const char gHyruleFieldTitleCardFRATex[] __attribute__((aligned (2))) = dgHyruleFieldTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgHyruleFieldTitleCardENGTex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gHyruleFieldTitleCardENGTex[] = dgHyruleFieldTitleCardENGTex;
|
||||
|
||||
#define dgHyruleFieldTitleCardGERTex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gHyruleFieldTitleCardGERTex[] = dgHyruleFieldTitleCardGERTex;
|
||||
|
||||
#define dgHyruleFieldTitleCardFRATex "__OTR__textures/g_pn_27/gHyruleFieldTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gHyruleFieldTitleCardFRATex[] = dgHyruleFieldTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgKakarikoVillageTitleCardENGTex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gKakarikoVillageTitleCardENGTex[] = dgKakarikoVillageTitleCardENGTex;
|
||||
#else
|
||||
static const char gKakarikoVillageTitleCardENGTex[] __attribute__((aligned (2))) = dgKakarikoVillageTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgKakarikoVillageTitleCardGERTex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gKakarikoVillageTitleCardGERTex[] = dgKakarikoVillageTitleCardGERTex;
|
||||
#else
|
||||
static const char gKakarikoVillageTitleCardGERTex[] __attribute__((aligned (2))) = dgKakarikoVillageTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgKakarikoVillageTitleCardFRATex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gKakarikoVillageTitleCardFRATex[] = dgKakarikoVillageTitleCardFRATex;
|
||||
#else
|
||||
static const char gKakarikoVillageTitleCardFRATex[] __attribute__((aligned (2))) = dgKakarikoVillageTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgKakarikoVillageTitleCardENGTex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gKakarikoVillageTitleCardENGTex[] = dgKakarikoVillageTitleCardENGTex;
|
||||
|
||||
#define dgKakarikoVillageTitleCardGERTex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gKakarikoVillageTitleCardGERTex[] = dgKakarikoVillageTitleCardGERTex;
|
||||
|
||||
#define dgKakarikoVillageTitleCardFRATex "__OTR__textures/g_pn_28/gKakarikoVillageTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gKakarikoVillageTitleCardFRATex[] = dgKakarikoVillageTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgGraveyardTitleCardENGTex "__OTR__textures/g_pn_29/gGraveyardTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGraveyardTitleCardENGTex[] = dgGraveyardTitleCardENGTex;
|
||||
#else
|
||||
static const char gGraveyardTitleCardENGTex[] __attribute__((aligned (2))) = dgGraveyardTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgGraveyardTitleCardGERTex "__OTR__textures/g_pn_29/gGraveyardTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGraveyardTitleCardGERTex[] = dgGraveyardTitleCardGERTex;
|
||||
#else
|
||||
static const char gGraveyardTitleCardGERTex[] __attribute__((aligned (2))) = dgGraveyardTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgGraveyardTitleCardFRATex "__OTR__textures/g_pn_29/gGraveyardTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGraveyardTitleCardFRATex[] = dgGraveyardTitleCardFRATex;
|
||||
#else
|
||||
static const char gGraveyardTitleCardFRATex[] __attribute__((aligned (2))) = dgGraveyardTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgGraveyardTitleCardENGTex "__OTR__textures/g_pn_29/gGraveyardTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gGraveyardTitleCardENGTex[] = dgGraveyardTitleCardENGTex;
|
||||
|
||||
#define dgGraveyardTitleCardGERTex "__OTR__textures/g_pn_29/gGraveyardTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gGraveyardTitleCardGERTex[] = dgGraveyardTitleCardGERTex;
|
||||
|
||||
#define dgGraveyardTitleCardFRATex "__OTR__textures/g_pn_29/gGraveyardTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gGraveyardTitleCardFRATex[] = dgGraveyardTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgZorasRiverTitleCardENGTex "__OTR__textures/g_pn_30/gZorasRiverTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZorasRiverTitleCardENGTex[] = dgZorasRiverTitleCardENGTex;
|
||||
#else
|
||||
static const char gZorasRiverTitleCardENGTex[] __attribute__((aligned (2))) = dgZorasRiverTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgZorasRiverTitleCardGERTex "__OTR__textures/g_pn_30/gZorasRiverTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZorasRiverTitleCardGERTex[] = dgZorasRiverTitleCardGERTex;
|
||||
#else
|
||||
static const char gZorasRiverTitleCardGERTex[] __attribute__((aligned (2))) = dgZorasRiverTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgZorasRiverTitleCardFRATex "__OTR__textures/g_pn_30/gZorasRiverTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZorasRiverTitleCardFRATex[] = dgZorasRiverTitleCardFRATex;
|
||||
#else
|
||||
static const char gZorasRiverTitleCardFRATex[] __attribute__((aligned (2))) = dgZorasRiverTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgZorasRiverTitleCardENGTex "__OTR__textures/g_pn_30/gZorasRiverTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gZorasRiverTitleCardENGTex[] = dgZorasRiverTitleCardENGTex;
|
||||
|
||||
#define dgZorasRiverTitleCardGERTex "__OTR__textures/g_pn_30/gZorasRiverTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gZorasRiverTitleCardGERTex[] = dgZorasRiverTitleCardGERTex;
|
||||
|
||||
#define dgZorasRiverTitleCardFRATex "__OTR__textures/g_pn_30/gZorasRiverTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gZorasRiverTitleCardFRATex[] = dgZorasRiverTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgKokiriForestTitleCardENGTex "__OTR__textures/g_pn_31/gKokiriForestTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gKokiriForestTitleCardENGTex[] = dgKokiriForestTitleCardENGTex;
|
||||
#else
|
||||
static const char gKokiriForestTitleCardENGTex[] __attribute__((aligned (2))) = dgKokiriForestTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgKokiriForestTitleCardGERTex "__OTR__textures/g_pn_31/gKokiriForestTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gKokiriForestTitleCardGERTex[] = dgKokiriForestTitleCardGERTex;
|
||||
#else
|
||||
static const char gKokiriForestTitleCardGERTex[] __attribute__((aligned (2))) = dgKokiriForestTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgKokiriForestTitleCardFRATex "__OTR__textures/g_pn_31/gKokiriForestTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gKokiriForestTitleCardFRATex[] = dgKokiriForestTitleCardFRATex;
|
||||
#else
|
||||
static const char gKokiriForestTitleCardFRATex[] __attribute__((aligned (2))) = dgKokiriForestTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgKokiriForestTitleCardENGTex "__OTR__textures/g_pn_31/gKokiriForestTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gKokiriForestTitleCardENGTex[] = dgKokiriForestTitleCardENGTex;
|
||||
|
||||
#define dgKokiriForestTitleCardGERTex "__OTR__textures/g_pn_31/gKokiriForestTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gKokiriForestTitleCardGERTex[] = dgKokiriForestTitleCardGERTex;
|
||||
|
||||
#define dgKokiriForestTitleCardFRATex "__OTR__textures/g_pn_31/gKokiriForestTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gKokiriForestTitleCardFRATex[] = dgKokiriForestTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgLakeHyliaTitleCardENGTex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLakeHyliaTitleCardENGTex[] = dgLakeHyliaTitleCardENGTex;
|
||||
#else
|
||||
static const char gLakeHyliaTitleCardENGTex[] __attribute__((aligned (2))) = dgLakeHyliaTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgLakeHyliaTitleCardGERTex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLakeHyliaTitleCardGERTex[] = dgLakeHyliaTitleCardGERTex;
|
||||
#else
|
||||
static const char gLakeHyliaTitleCardGERTex[] __attribute__((aligned (2))) = dgLakeHyliaTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgLakeHyliaTitleCardFRATex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLakeHyliaTitleCardFRATex[] = dgLakeHyliaTitleCardFRATex;
|
||||
#else
|
||||
static const char gLakeHyliaTitleCardFRATex[] __attribute__((aligned (2))) = dgLakeHyliaTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgLakeHyliaTitleCardENGTex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gLakeHyliaTitleCardENGTex[] = dgLakeHyliaTitleCardENGTex;
|
||||
|
||||
#define dgLakeHyliaTitleCardGERTex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gLakeHyliaTitleCardGERTex[] = dgLakeHyliaTitleCardGERTex;
|
||||
|
||||
#define dgLakeHyliaTitleCardFRATex "__OTR__textures/g_pn_32/gLakeHyliaTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gLakeHyliaTitleCardFRATex[] = dgLakeHyliaTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgZorasDomainTitleCardENGTex "__OTR__textures/g_pn_33/gZorasDomainTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZorasDomainTitleCardENGTex[] = dgZorasDomainTitleCardENGTex;
|
||||
#else
|
||||
static const char gZorasDomainTitleCardENGTex[] __attribute__((aligned (2))) = dgZorasDomainTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgZorasDomainTitleCardGERTex "__OTR__textures/g_pn_33/gZorasDomainTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZorasDomainTitleCardGERTex[] = dgZorasDomainTitleCardGERTex;
|
||||
#else
|
||||
static const char gZorasDomainTitleCardGERTex[] __attribute__((aligned (2))) = dgZorasDomainTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgZorasDomainTitleCardFRATex "__OTR__textures/g_pn_33/gZorasDomainTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZorasDomainTitleCardFRATex[] = dgZorasDomainTitleCardFRATex;
|
||||
#else
|
||||
static const char gZorasDomainTitleCardFRATex[] __attribute__((aligned (2))) = dgZorasDomainTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgZorasDomainTitleCardENGTex "__OTR__textures/g_pn_33/gZorasDomainTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gZorasDomainTitleCardENGTex[] = dgZorasDomainTitleCardENGTex;
|
||||
|
||||
#define dgZorasDomainTitleCardGERTex "__OTR__textures/g_pn_33/gZorasDomainTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gZorasDomainTitleCardGERTex[] = dgZorasDomainTitleCardGERTex;
|
||||
|
||||
#define dgZorasDomainTitleCardFRATex "__OTR__textures/g_pn_33/gZorasDomainTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gZorasDomainTitleCardFRATex[] = dgZorasDomainTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgZorasFountainTitleCardENGTex "__OTR__textures/g_pn_34/gZorasFountainTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZorasFountainTitleCardENGTex[] = dgZorasFountainTitleCardENGTex;
|
||||
#else
|
||||
static const char gZorasFountainTitleCardENGTex[] __attribute__((aligned (2))) = dgZorasFountainTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgZorasFountainTitleCardGERTex "__OTR__textures/g_pn_34/gZorasFountainTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZorasFountainTitleCardGERTex[] = dgZorasFountainTitleCardGERTex;
|
||||
#else
|
||||
static const char gZorasFountainTitleCardGERTex[] __attribute__((aligned (2))) = dgZorasFountainTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgZorasFountainTitleCardFRATex "__OTR__textures/g_pn_34/gZorasFountainTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gZorasFountainTitleCardFRATex[] = dgZorasFountainTitleCardFRATex;
|
||||
#else
|
||||
static const char gZorasFountainTitleCardFRATex[] __attribute__((aligned (2))) = dgZorasFountainTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgZorasFountainTitleCardENGTex "__OTR__textures/g_pn_34/gZorasFountainTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gZorasFountainTitleCardENGTex[] = dgZorasFountainTitleCardENGTex;
|
||||
|
||||
#define dgZorasFountainTitleCardGERTex "__OTR__textures/g_pn_34/gZorasFountainTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gZorasFountainTitleCardGERTex[] = dgZorasFountainTitleCardGERTex;
|
||||
|
||||
#define dgZorasFountainTitleCardFRATex "__OTR__textures/g_pn_34/gZorasFountainTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gZorasFountainTitleCardFRATex[] = dgZorasFountainTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgGERudoValleyTitleCardENGTex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGERudoValleyTitleCardENGTex[] = dgGERudoValleyTitleCardENGTex;
|
||||
#else
|
||||
static const char gGERudoValleyTitleCardENGTex[] __attribute__((aligned (2))) = dgGERudoValleyTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgGERudoValleyTitleCardGERTex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGERudoValleyTitleCardGERTex[] = dgGERudoValleyTitleCardGERTex;
|
||||
#else
|
||||
static const char gGERudoValleyTitleCardGERTex[] __attribute__((aligned (2))) = dgGERudoValleyTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgGERudoValleyTitleCardFRATex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGERudoValleyTitleCardFRATex[] = dgGERudoValleyTitleCardFRATex;
|
||||
#else
|
||||
static const char gGERudoValleyTitleCardFRATex[] __attribute__((aligned (2))) = dgGERudoValleyTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgGERudoValleyTitleCardENGTex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gGERudoValleyTitleCardENGTex[] = dgGERudoValleyTitleCardENGTex;
|
||||
|
||||
#define dgGERudoValleyTitleCardGERTex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gGERudoValleyTitleCardGERTex[] = dgGERudoValleyTitleCardGERTex;
|
||||
|
||||
#define dgGERudoValleyTitleCardFRATex "__OTR__textures/g_pn_35/gGERudoValleyTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gGERudoValleyTitleCardFRATex[] = dgGERudoValleyTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgLostWoodsTitleCardENGTex "__OTR__textures/g_pn_36/gLostWoodsTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLostWoodsTitleCardENGTex[] = dgLostWoodsTitleCardENGTex;
|
||||
#else
|
||||
static const char gLostWoodsTitleCardENGTex[] __attribute__((aligned (2))) = dgLostWoodsTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgLostWoodsTitleCardGERTex "__OTR__textures/g_pn_36/gLostWoodsTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLostWoodsTitleCardGERTex[] = dgLostWoodsTitleCardGERTex;
|
||||
#else
|
||||
static const char gLostWoodsTitleCardGERTex[] __attribute__((aligned (2))) = dgLostWoodsTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgLostWoodsTitleCardFRATex "__OTR__textures/g_pn_36/gLostWoodsTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLostWoodsTitleCardFRATex[] = dgLostWoodsTitleCardFRATex;
|
||||
#else
|
||||
static const char gLostWoodsTitleCardFRATex[] __attribute__((aligned (2))) = dgLostWoodsTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgLostWoodsTitleCardENGTex "__OTR__textures/g_pn_36/gLostWoodsTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gLostWoodsTitleCardENGTex[] = dgLostWoodsTitleCardENGTex;
|
||||
|
||||
#define dgLostWoodsTitleCardGERTex "__OTR__textures/g_pn_36/gLostWoodsTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gLostWoodsTitleCardGERTex[] = dgLostWoodsTitleCardGERTex;
|
||||
|
||||
#define dgLostWoodsTitleCardFRATex "__OTR__textures/g_pn_36/gLostWoodsTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gLostWoodsTitleCardFRATex[] = dgLostWoodsTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgHauntedWastelandTitleCardENGTex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHauntedWastelandTitleCardENGTex[] = dgHauntedWastelandTitleCardENGTex;
|
||||
#else
|
||||
static const char gHauntedWastelandTitleCardENGTex[] __attribute__((aligned (2))) = dgHauntedWastelandTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgHauntedWastelandTitleCardGERTex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHauntedWastelandTitleCardGERTex[] = dgHauntedWastelandTitleCardGERTex;
|
||||
#else
|
||||
static const char gHauntedWastelandTitleCardGERTex[] __attribute__((aligned (2))) = dgHauntedWastelandTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgHauntedWastelandTitleCardFRATex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHauntedWastelandTitleCardFRATex[] = dgHauntedWastelandTitleCardFRATex;
|
||||
#else
|
||||
static const char gHauntedWastelandTitleCardFRATex[] __attribute__((aligned (2))) = dgHauntedWastelandTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgHauntedWastelandTitleCardENGTex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gHauntedWastelandTitleCardENGTex[] = dgHauntedWastelandTitleCardENGTex;
|
||||
|
||||
#define dgHauntedWastelandTitleCardGERTex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gHauntedWastelandTitleCardGERTex[] = dgHauntedWastelandTitleCardGERTex;
|
||||
|
||||
#define dgHauntedWastelandTitleCardFRATex "__OTR__textures/g_pn_37/gHauntedWastelandTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gHauntedWastelandTitleCardFRATex[] = dgHauntedWastelandTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgHyruleCastleTitleCardENGTex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHyruleCastleTitleCardENGTex[] = dgHyruleCastleTitleCardENGTex;
|
||||
#else
|
||||
static const char gHyruleCastleTitleCardENGTex[] __attribute__((aligned (2))) = dgHyruleCastleTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgHyruleCastleTitleCardGERTex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHyruleCastleTitleCardGERTex[] = dgHyruleCastleTitleCardGERTex;
|
||||
#else
|
||||
static const char gHyruleCastleTitleCardGERTex[] __attribute__((aligned (2))) = dgHyruleCastleTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgHyruleCastleTitleCardFRATex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHyruleCastleTitleCardFRATex[] = dgHyruleCastleTitleCardFRATex;
|
||||
#else
|
||||
static const char gHyruleCastleTitleCardFRATex[] __attribute__((aligned (2))) = dgHyruleCastleTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgHyruleCastleTitleCardENGTex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gHyruleCastleTitleCardENGTex[] = dgHyruleCastleTitleCardENGTex;
|
||||
|
||||
#define dgHyruleCastleTitleCardGERTex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gHyruleCastleTitleCardGERTex[] = dgHyruleCastleTitleCardGERTex;
|
||||
|
||||
#define dgHyruleCastleTitleCardFRATex "__OTR__textures/g_pn_38/gHyruleCastleTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gHyruleCastleTitleCardFRATex[] = dgHyruleCastleTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgDeathMountainTrailTitleCardENGTex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDeathMountainTrailTitleCardENGTex[] = dgDeathMountainTrailTitleCardENGTex;
|
||||
#else
|
||||
static const char gDeathMountainTrailTitleCardENGTex[] __attribute__((aligned (2))) = dgDeathMountainTrailTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgDeathMountainTrailTitleCardGERTex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDeathMountainTrailTitleCardGERTex[] = dgDeathMountainTrailTitleCardGERTex;
|
||||
#else
|
||||
static const char gDeathMountainTrailTitleCardGERTex[] __attribute__((aligned (2))) = dgDeathMountainTrailTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgDeathMountainTrailTitleCardFRATex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDeathMountainTrailTitleCardFRATex[] = dgDeathMountainTrailTitleCardFRATex;
|
||||
#else
|
||||
static const char gDeathMountainTrailTitleCardFRATex[] __attribute__((aligned (2))) = dgDeathMountainTrailTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgDeathMountainTrailTitleCardENGTex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gDeathMountainTrailTitleCardENGTex[] = dgDeathMountainTrailTitleCardENGTex;
|
||||
|
||||
#define dgDeathMountainTrailTitleCardGERTex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gDeathMountainTrailTitleCardGERTex[] = dgDeathMountainTrailTitleCardGERTex;
|
||||
|
||||
#define dgDeathMountainTrailTitleCardFRATex "__OTR__textures/g_pn_39/gDeathMountainTrailTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gDeathMountainTrailTitleCardFRATex[] = dgDeathMountainTrailTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgDeathMountainCraterTitleCardENGTex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDeathMountainCraterTitleCardENGTex[] = dgDeathMountainCraterTitleCardENGTex;
|
||||
#else
|
||||
static const char gDeathMountainCraterTitleCardENGTex[] __attribute__((aligned (2))) = dgDeathMountainCraterTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgDeathMountainCraterTitleCardGERTex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDeathMountainCraterTitleCardGERTex[] = dgDeathMountainCraterTitleCardGERTex;
|
||||
#else
|
||||
static const char gDeathMountainCraterTitleCardGERTex[] __attribute__((aligned (2))) = dgDeathMountainCraterTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgDeathMountainCraterTitleCardFRATex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDeathMountainCraterTitleCardFRATex[] = dgDeathMountainCraterTitleCardFRATex;
|
||||
#else
|
||||
static const char gDeathMountainCraterTitleCardFRATex[] __attribute__((aligned (2))) = dgDeathMountainCraterTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgDeathMountainCraterTitleCardENGTex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gDeathMountainCraterTitleCardENGTex[] = dgDeathMountainCraterTitleCardENGTex;
|
||||
|
||||
#define dgDeathMountainCraterTitleCardGERTex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gDeathMountainCraterTitleCardGERTex[] = dgDeathMountainCraterTitleCardGERTex;
|
||||
|
||||
#define dgDeathMountainCraterTitleCardFRATex "__OTR__textures/g_pn_40/gDeathMountainCraterTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gDeathMountainCraterTitleCardFRATex[] = dgDeathMountainCraterTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgGoronCityTitleCardENGTex "__OTR__textures/g_pn_41/gGoronCityTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGoronCityTitleCardENGTex[] = dgGoronCityTitleCardENGTex;
|
||||
#else
|
||||
static const char gGoronCityTitleCardENGTex[] __attribute__((aligned (2))) = dgGoronCityTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgGoronCityTitleCardGERTex "__OTR__textures/g_pn_41/gGoronCityTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGoronCityTitleCardGERTex[] = dgGoronCityTitleCardGERTex;
|
||||
#else
|
||||
static const char gGoronCityTitleCardGERTex[] __attribute__((aligned (2))) = dgGoronCityTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgGoronCityTitleCardFRATex "__OTR__textures/g_pn_41/gGoronCityTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGoronCityTitleCardFRATex[] = dgGoronCityTitleCardFRATex;
|
||||
#else
|
||||
static const char gGoronCityTitleCardFRATex[] __attribute__((aligned (2))) = dgGoronCityTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgGoronCityTitleCardENGTex "__OTR__textures/g_pn_41/gGoronCityTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gGoronCityTitleCardENGTex[] = dgGoronCityTitleCardENGTex;
|
||||
|
||||
#define dgGoronCityTitleCardGERTex "__OTR__textures/g_pn_41/gGoronCityTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gGoronCityTitleCardGERTex[] = dgGoronCityTitleCardGERTex;
|
||||
|
||||
#define dgGoronCityTitleCardFRATex "__OTR__textures/g_pn_41/gGoronCityTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gGoronCityTitleCardFRATex[] = dgGoronCityTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgLonLonRanchTitleCardENGTex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLonLonRanchTitleCardENGTex[] = dgLonLonRanchTitleCardENGTex;
|
||||
#else
|
||||
static const char gLonLonRanchTitleCardENGTex[] __attribute__((aligned (2))) = dgLonLonRanchTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgLonLonRanchTitleCardGERTex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLonLonRanchTitleCardGERTex[] = dgLonLonRanchTitleCardGERTex;
|
||||
#else
|
||||
static const char gLonLonRanchTitleCardGERTex[] __attribute__((aligned (2))) = dgLonLonRanchTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgLonLonRanchTitleCardFRATex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gLonLonRanchTitleCardFRATex[] = dgLonLonRanchTitleCardFRATex;
|
||||
#else
|
||||
static const char gLonLonRanchTitleCardFRATex[] __attribute__((aligned (2))) = dgLonLonRanchTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgLonLonRanchTitleCardENGTex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gLonLonRanchTitleCardENGTex[] = dgLonLonRanchTitleCardENGTex;
|
||||
|
||||
#define dgLonLonRanchTitleCardGERTex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gLonLonRanchTitleCardGERTex[] = dgLonLonRanchTitleCardGERTex;
|
||||
|
||||
#define dgLonLonRanchTitleCardFRATex "__OTR__textures/g_pn_42/gLonLonRanchTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gLonLonRanchTitleCardFRATex[] = dgLonLonRanchTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgGanonsCastleTitleCardENGTex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanonsCastleTitleCardENGTex[] = dgGanonsCastleTitleCardENGTex;
|
||||
#else
|
||||
static const char gGanonsCastleTitleCardENGTex[] __attribute__((aligned (2))) = dgGanonsCastleTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgGanonsCastleTitleCardGERTex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanonsCastleTitleCardGERTex[] = dgGanonsCastleTitleCardGERTex;
|
||||
#else
|
||||
static const char gGanonsCastleTitleCardGERTex[] __attribute__((aligned (2))) = dgGanonsCastleTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgGanonsCastleTitleCardFRATex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGanonsCastleTitleCardFRATex[] = dgGanonsCastleTitleCardFRATex;
|
||||
#else
|
||||
static const char gGanonsCastleTitleCardFRATex[] __attribute__((aligned (2))) = dgGanonsCastleTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgGanonsCastleTitleCardENGTex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gGanonsCastleTitleCardENGTex[] = dgGanonsCastleTitleCardENGTex;
|
||||
|
||||
#define dgGanonsCastleTitleCardGERTex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gGanonsCastleTitleCardGERTex[] = dgGanonsCastleTitleCardGERTex;
|
||||
|
||||
#define dgGanonsCastleTitleCardFRATex "__OTR__textures/g_pn_43/gGanonsCastleTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gGanonsCastleTitleCardFRATex[] = dgGanonsCastleTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgRoyalFamilysTombTitleCardENGTex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gRoyalFamilysTombTitleCardENGTex[] = dgRoyalFamilysTombTitleCardENGTex;
|
||||
#else
|
||||
static const char gRoyalFamilysTombTitleCardENGTex[] __attribute__((aligned (2))) = dgRoyalFamilysTombTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgRoyalFamilysTombTitleCardGERTex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gRoyalFamilysTombTitleCardGERTex[] = dgRoyalFamilysTombTitleCardGERTex;
|
||||
#else
|
||||
static const char gRoyalFamilysTombTitleCardGERTex[] __attribute__((aligned (2))) = dgRoyalFamilysTombTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgRoyalFamilysTombTitleCardFRATex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gRoyalFamilysTombTitleCardFRATex[] = dgRoyalFamilysTombTitleCardFRATex;
|
||||
#else
|
||||
static const char gRoyalFamilysTombTitleCardFRATex[] __attribute__((aligned (2))) = dgRoyalFamilysTombTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgRoyalFamilysTombTitleCardENGTex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gRoyalFamilysTombTitleCardENGTex[] = dgRoyalFamilysTombTitleCardENGTex;
|
||||
|
||||
#define dgRoyalFamilysTombTitleCardGERTex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gRoyalFamilysTombTitleCardGERTex[] = dgRoyalFamilysTombTitleCardGERTex;
|
||||
|
||||
#define dgRoyalFamilysTombTitleCardFRATex "__OTR__textures/g_pn_44/gRoyalFamilysTombTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gRoyalFamilysTombTitleCardFRATex[] = dgRoyalFamilysTombTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgFairysFountainTitleCardENGTex "__OTR__textures/g_pn_45/gFairysFountainTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gFairysFountainTitleCardENGTex[] = dgFairysFountainTitleCardENGTex;
|
||||
#else
|
||||
static const char gFairysFountainTitleCardENGTex[] __attribute__((aligned (2))) = dgFairysFountainTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgFairysFountainTitleCardGERTex "__OTR__textures/g_pn_45/gFairysFountainTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gFairysFountainTitleCardGERTex[] = dgFairysFountainTitleCardGERTex;
|
||||
#else
|
||||
static const char gFairysFountainTitleCardGERTex[] __attribute__((aligned (2))) = dgFairysFountainTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgFairysFountainTitleCardFRATex "__OTR__textures/g_pn_45/gFairysFountainTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gFairysFountainTitleCardFRATex[] = dgFairysFountainTitleCardFRATex;
|
||||
#else
|
||||
static const char gFairysFountainTitleCardFRATex[] __attribute__((aligned (2))) = dgFairysFountainTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgFairysFountainTitleCardENGTex "__OTR__textures/g_pn_45/gFairysFountainTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gFairysFountainTitleCardENGTex[] = dgFairysFountainTitleCardENGTex;
|
||||
|
||||
#define dgFairysFountainTitleCardGERTex "__OTR__textures/g_pn_45/gFairysFountainTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gFairysFountainTitleCardGERTex[] = dgFairysFountainTitleCardGERTex;
|
||||
|
||||
#define dgFairysFountainTitleCardFRATex "__OTR__textures/g_pn_45/gFairysFountainTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gFairysFountainTitleCardFRATex[] = dgFairysFountainTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgFishingPondTitleCardENGTex "__OTR__textures/g_pn_46/gFishingPondTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gFishingPondTitleCardENGTex[] = dgFishingPondTitleCardENGTex;
|
||||
#else
|
||||
static const char gFishingPondTitleCardENGTex[] __attribute__((aligned (2))) = dgFishingPondTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgFishingPondTitleCardGERTex "__OTR__textures/g_pn_46/gFishingPondTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gFishingPondTitleCardGERTex[] = dgFishingPondTitleCardGERTex;
|
||||
#else
|
||||
static const char gFishingPondTitleCardGERTex[] __attribute__((aligned (2))) = dgFishingPondTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgFishingPondTitleCardFRATex "__OTR__textures/g_pn_46/gFishingPondTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gFishingPondTitleCardFRATex[] = dgFishingPondTitleCardFRATex;
|
||||
#else
|
||||
static const char gFishingPondTitleCardFRATex[] __attribute__((aligned (2))) = dgFishingPondTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgFishingPondTitleCardENGTex "__OTR__textures/g_pn_46/gFishingPondTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gFishingPondTitleCardENGTex[] = dgFishingPondTitleCardENGTex;
|
||||
|
||||
#define dgFishingPondTitleCardGERTex "__OTR__textures/g_pn_46/gFishingPondTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gFishingPondTitleCardGERTex[] = dgFishingPondTitleCardGERTex;
|
||||
|
||||
#define dgFishingPondTitleCardFRATex "__OTR__textures/g_pn_46/gFishingPondTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gFishingPondTitleCardFRATex[] = dgFishingPondTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgBombchuBowlingAlleyCardENGTex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBombchuBowlingAlleyCardENGTex[] = dgBombchuBowlingAlleyCardENGTex;
|
||||
#else
|
||||
static const char gBombchuBowlingAlleyCardENGTex[] __attribute__((aligned (2))) = dgBombchuBowlingAlleyCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgBombchuBowlingAlleyCardGERTex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBombchuBowlingAlleyCardGERTex[] = dgBombchuBowlingAlleyCardGERTex;
|
||||
#else
|
||||
static const char gBombchuBowlingAlleyCardGERTex[] __attribute__((aligned (2))) = dgBombchuBowlingAlleyCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgBombchuBowlingAlleyCardFRATex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBombchuBowlingAlleyCardFRATex[] = dgBombchuBowlingAlleyCardFRATex;
|
||||
#else
|
||||
static const char gBombchuBowlingAlleyCardFRATex[] __attribute__((aligned (2))) = dgBombchuBowlingAlleyCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgBombchuBowlingAlleyCardENGTex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gBombchuBowlingAlleyCardENGTex[] = dgBombchuBowlingAlleyCardENGTex;
|
||||
|
||||
#define dgBombchuBowlingAlleyCardGERTex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gBombchuBowlingAlleyCardGERTex[] = dgBombchuBowlingAlleyCardGERTex;
|
||||
|
||||
#define dgBombchuBowlingAlleyCardFRATex "__OTR__textures/g_pn_47/gBombchuBowlingAlleyCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gBombchuBowlingAlleyCardFRATex[] = dgBombchuBowlingAlleyCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgStableTitleCardENGTex "__OTR__textures/g_pn_48/gStableTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gStableTitleCardENGTex[] = dgStableTitleCardENGTex;
|
||||
#else
|
||||
static const char gStableTitleCardENGTex[] __attribute__((aligned (2))) = dgStableTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgStableTitleCardGERTex "__OTR__textures/g_pn_48/gStableTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gStableTitleCardGERTex[] = dgStableTitleCardGERTex;
|
||||
#else
|
||||
static const char gStableTitleCardGERTex[] __attribute__((aligned (2))) = dgStableTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgStableTitleCardFRATex "__OTR__textures/g_pn_48/gStableTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gStableTitleCardFRATex[] = dgStableTitleCardFRATex;
|
||||
#else
|
||||
static const char gStableTitleCardFRATex[] __attribute__((aligned (2))) = dgStableTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgStableTitleCardENGTex "__OTR__textures/g_pn_48/gStableTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gStableTitleCardENGTex[] = dgStableTitleCardENGTex;
|
||||
|
||||
#define dgStableTitleCardGERTex "__OTR__textures/g_pn_48/gStableTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gStableTitleCardGERTex[] = dgStableTitleCardGERTex;
|
||||
|
||||
#define dgStableTitleCardFRATex "__OTR__textures/g_pn_48/gStableTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gStableTitleCardFRATex[] = dgStableTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgThievesHideoutTitleCardENGTex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gThievesHideoutTitleCardENGTex[] = dgThievesHideoutTitleCardENGTex;
|
||||
#else
|
||||
static const char gThievesHideoutTitleCardENGTex[] __attribute__((aligned (2))) = dgThievesHideoutTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgThievesHideoutTitleCardGERTex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gThievesHideoutTitleCardGERTex[] = dgThievesHideoutTitleCardGERTex;
|
||||
#else
|
||||
static const char gThievesHideoutTitleCardGERTex[] __attribute__((aligned (2))) = dgThievesHideoutTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgThievesHideoutTitleCardFRATex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gThievesHideoutTitleCardFRATex[] = dgThievesHideoutTitleCardFRATex;
|
||||
#else
|
||||
static const char gThievesHideoutTitleCardFRATex[] __attribute__((aligned (2))) = dgThievesHideoutTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgThievesHideoutTitleCardENGTex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gThievesHideoutTitleCardENGTex[] = dgThievesHideoutTitleCardENGTex;
|
||||
|
||||
#define dgThievesHideoutTitleCardGERTex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gThievesHideoutTitleCardGERTex[] = dgThievesHideoutTitleCardGERTex;
|
||||
|
||||
#define dgThievesHideoutTitleCardFRATex "__OTR__textures/g_pn_49/gThievesHideoutTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gThievesHideoutTitleCardFRATex[] = dgThievesHideoutTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgHappyMaskShopTitleCardENGTex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHappyMaskShopTitleCardENGTex[] = dgHappyMaskShopTitleCardENGTex;
|
||||
#else
|
||||
static const char gHappyMaskShopTitleCardENGTex[] __attribute__((aligned (2))) = dgHappyMaskShopTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgHappyMaskShopTitleCardGERTex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHappyMaskShopTitleCardGERTex[] = dgHappyMaskShopTitleCardGERTex;
|
||||
#else
|
||||
static const char gHappyMaskShopTitleCardGERTex[] __attribute__((aligned (2))) = dgHappyMaskShopTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgHappyMaskShopTitleCardFRATex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gHappyMaskShopTitleCardFRATex[] = dgHappyMaskShopTitleCardFRATex;
|
||||
#else
|
||||
static const char gHappyMaskShopTitleCardFRATex[] __attribute__((aligned (2))) = dgHappyMaskShopTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgHappyMaskShopTitleCardENGTex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gHappyMaskShopTitleCardENGTex[] = dgHappyMaskShopTitleCardENGTex;
|
||||
|
||||
#define dgHappyMaskShopTitleCardGERTex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gHappyMaskShopTitleCardGERTex[] = dgHappyMaskShopTitleCardGERTex;
|
||||
|
||||
#define dgHappyMaskShopTitleCardFRATex "__OTR__textures/g_pn_50/gHappyMaskShopTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gHappyMaskShopTitleCardFRATex[] = dgHappyMaskShopTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgTreasureBoxShopTitleCardENGTex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gTreasureBoxShopTitleCardENGTex[] = dgTreasureBoxShopTitleCardENGTex;
|
||||
#else
|
||||
static const char gTreasureBoxShopTitleCardENGTex[] __attribute__((aligned (2))) = dgTreasureBoxShopTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgTreasureBoxShopTitleCardGERTex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gTreasureBoxShopTitleCardGERTex[] = dgTreasureBoxShopTitleCardGERTex;
|
||||
#else
|
||||
static const char gTreasureBoxShopTitleCardGERTex[] __attribute__((aligned (2))) = dgTreasureBoxShopTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgTreasureBoxShopTitleCardFRATex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gTreasureBoxShopTitleCardFRATex[] = dgTreasureBoxShopTitleCardFRATex;
|
||||
#else
|
||||
static const char gTreasureBoxShopTitleCardFRATex[] __attribute__((aligned (2))) = dgTreasureBoxShopTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgTreasureBoxShopTitleCardENGTex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gTreasureBoxShopTitleCardENGTex[] = dgTreasureBoxShopTitleCardENGTex;
|
||||
|
||||
#define dgTreasureBoxShopTitleCardGERTex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gTreasureBoxShopTitleCardGERTex[] = dgTreasureBoxShopTitleCardGERTex;
|
||||
|
||||
#define dgTreasureBoxShopTitleCardFRATex "__OTR__textures/g_pn_51/gTreasureBoxShopTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gTreasureBoxShopTitleCardFRATex[] = dgTreasureBoxShopTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgSacredForestMeadowTitleCardENGTex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gSacredForestMeadowTitleCardENGTex[] = dgSacredForestMeadowTitleCardENGTex;
|
||||
#else
|
||||
static const char gSacredForestMeadowTitleCardENGTex[] __attribute__((aligned (2))) = dgSacredForestMeadowTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgSacredForestMeadowTitleCardGERTex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gSacredForestMeadowTitleCardGERTex[] = dgSacredForestMeadowTitleCardGERTex;
|
||||
#else
|
||||
static const char gSacredForestMeadowTitleCardGERTex[] __attribute__((aligned (2))) = dgSacredForestMeadowTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgSacredForestMeadowTitleCardFRATex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gSacredForestMeadowTitleCardFRATex[] = dgSacredForestMeadowTitleCardFRATex;
|
||||
#else
|
||||
static const char gSacredForestMeadowTitleCardFRATex[] __attribute__((aligned (2))) = dgSacredForestMeadowTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgSacredForestMeadowTitleCardENGTex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gSacredForestMeadowTitleCardENGTex[] = dgSacredForestMeadowTitleCardENGTex;
|
||||
|
||||
#define dgSacredForestMeadowTitleCardGERTex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gSacredForestMeadowTitleCardGERTex[] = dgSacredForestMeadowTitleCardGERTex;
|
||||
|
||||
#define dgSacredForestMeadowTitleCardFRATex "__OTR__textures/g_pn_52/gSacredForestMeadowTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gSacredForestMeadowTitleCardFRATex[] = dgSacredForestMeadowTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgGERudosFortressTitleCardENGTex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGERudosFortressTitleCardENGTex[] = dgGERudosFortressTitleCardENGTex;
|
||||
#else
|
||||
static const char gGERudosFortressTitleCardENGTex[] __attribute__((aligned (2))) = dgGERudosFortressTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgGERudosFortressTitleCardGERTex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGERudosFortressTitleCardGERTex[] = dgGERudosFortressTitleCardGERTex;
|
||||
#else
|
||||
static const char gGERudosFortressTitleCardGERTex[] __attribute__((aligned (2))) = dgGERudosFortressTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgGERudosFortressTitleCardFRATex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gGERudosFortressTitleCardFRATex[] = dgGERudosFortressTitleCardFRATex;
|
||||
#else
|
||||
static const char gGERudosFortressTitleCardFRATex[] __attribute__((aligned (2))) = dgGERudosFortressTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgGERudosFortressTitleCardENGTex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gGERudosFortressTitleCardENGTex[] = dgGERudosFortressTitleCardENGTex;
|
||||
|
||||
#define dgGERudosFortressTitleCardGERTex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gGERudosFortressTitleCardGERTex[] = dgGERudosFortressTitleCardGERTex;
|
||||
|
||||
#define dgGERudosFortressTitleCardFRATex "__OTR__textures/g_pn_53/gGERudosFortressTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gGERudosFortressTitleCardFRATex[] = dgGERudosFortressTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgBottomOfTheWellTitleCardENGTex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBottomOfTheWellTitleCardENGTex[] = dgBottomOfTheWellTitleCardENGTex;
|
||||
#else
|
||||
static const char gBottomOfTheWellTitleCardENGTex[] __attribute__((aligned (2))) = dgBottomOfTheWellTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgBottomOfTheWellTitleCardGERTex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBottomOfTheWellTitleCardGERTex[] = dgBottomOfTheWellTitleCardGERTex;
|
||||
#else
|
||||
static const char gBottomOfTheWellTitleCardGERTex[] __attribute__((aligned (2))) = dgBottomOfTheWellTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgBottomOfTheWellTitleCardFRATex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBottomOfTheWellTitleCardFRATex[] = dgBottomOfTheWellTitleCardFRATex;
|
||||
#else
|
||||
static const char gBottomOfTheWellTitleCardFRATex[] __attribute__((aligned (2))) = dgBottomOfTheWellTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgBottomOfTheWellTitleCardENGTex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gBottomOfTheWellTitleCardENGTex[] = dgBottomOfTheWellTitleCardENGTex;
|
||||
|
||||
#define dgBottomOfTheWellTitleCardGERTex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gBottomOfTheWellTitleCardGERTex[] = dgBottomOfTheWellTitleCardGERTex;
|
||||
|
||||
#define dgBottomOfTheWellTitleCardFRATex "__OTR__textures/g_pn_54/gBottomOfTheWellTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gBottomOfTheWellTitleCardFRATex[] = dgBottomOfTheWellTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgDesertColossusTitleCardENGTex "__OTR__textures/g_pn_55/gDesertColossusTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDesertColossusTitleCardENGTex[] = dgDesertColossusTitleCardENGTex;
|
||||
#else
|
||||
static const char gDesertColossusTitleCardENGTex[] __attribute__((aligned (2))) = dgDesertColossusTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgDesertColossusTitleCardGERTex "__OTR__textures/g_pn_55/gDesertColossusTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDesertColossusTitleCardGERTex[] = dgDesertColossusTitleCardGERTex;
|
||||
#else
|
||||
static const char gDesertColossusTitleCardGERTex[] __attribute__((aligned (2))) = dgDesertColossusTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgDesertColossusTitleCardFRATex "__OTR__textures/g_pn_55/gDesertColossusTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDesertColossusTitleCardFRATex[] = dgDesertColossusTitleCardFRATex;
|
||||
#else
|
||||
static const char gDesertColossusTitleCardFRATex[] __attribute__((aligned (2))) = dgDesertColossusTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgDesertColossusTitleCardENGTex "__OTR__textures/g_pn_55/gDesertColossusTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gDesertColossusTitleCardENGTex[] = dgDesertColossusTitleCardENGTex;
|
||||
|
||||
#define dgDesertColossusTitleCardGERTex "__OTR__textures/g_pn_55/gDesertColossusTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gDesertColossusTitleCardGERTex[] = dgDesertColossusTitleCardGERTex;
|
||||
|
||||
#define dgDesertColossusTitleCardFRATex "__OTR__textures/g_pn_55/gDesertColossusTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gDesertColossusTitleCardFRATex[] = dgDesertColossusTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgBombchuShopTitleCardENGTex "__OTR__textures/g_pn_56/gBombchuShopTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBombchuShopTitleCardENGTex[] = dgBombchuShopTitleCardENGTex;
|
||||
#else
|
||||
static const char gBombchuShopTitleCardENGTex[] __attribute__((aligned (2))) = dgBombchuShopTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgBombchuShopTitleCardGERTex "__OTR__textures/g_pn_56/gBombchuShopTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBombchuShopTitleCardGERTex[] = dgBombchuShopTitleCardGERTex;
|
||||
#else
|
||||
static const char gBombchuShopTitleCardGERTex[] __attribute__((aligned (2))) = dgBombchuShopTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgBombchuShopTitleCardFRATex "__OTR__textures/g_pn_56/gBombchuShopTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gBombchuShopTitleCardFRATex[] = dgBombchuShopTitleCardFRATex;
|
||||
#else
|
||||
static const char gBombchuShopTitleCardFRATex[] __attribute__((aligned (2))) = dgBombchuShopTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgBombchuShopTitleCardENGTex "__OTR__textures/g_pn_56/gBombchuShopTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gBombchuShopTitleCardENGTex[] = dgBombchuShopTitleCardENGTex;
|
||||
|
||||
#define dgBombchuShopTitleCardGERTex "__OTR__textures/g_pn_56/gBombchuShopTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gBombchuShopTitleCardGERTex[] = dgBombchuShopTitleCardGERTex;
|
||||
|
||||
#define dgBombchuShopTitleCardFRATex "__OTR__textures/g_pn_56/gBombchuShopTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gBombchuShopTitleCardFRATex[] = dgBombchuShopTitleCardFRATex;
|
||||
@@ -1,23 +1,12 @@
|
||||
#pragma once
|
||||
#define dgQuestionMarkTitleCardENGTex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardENGTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gQuestionMarkTitleCardENGTex[] = dgQuestionMarkTitleCardENGTex;
|
||||
#else
|
||||
static const char gQuestionMarkTitleCardENGTex[] __attribute__((aligned (2))) = dgQuestionMarkTitleCardENGTex;
|
||||
#endif
|
||||
|
||||
#define dgQuestionMarkTitleCardGERTex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardGERTex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gQuestionMarkTitleCardGERTex[] = dgQuestionMarkTitleCardGERTex;
|
||||
#else
|
||||
static const char gQuestionMarkTitleCardGERTex[] __attribute__((aligned (2))) = dgQuestionMarkTitleCardGERTex;
|
||||
#endif
|
||||
|
||||
#define dgQuestionMarkTitleCardFRATex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardFRATex"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gQuestionMarkTitleCardFRATex[] = dgQuestionMarkTitleCardFRATex;
|
||||
#else
|
||||
static const char gQuestionMarkTitleCardFRATex[] __attribute__((aligned (2))) = dgQuestionMarkTitleCardFRATex;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgQuestionMarkTitleCardENGTex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardENGTex"
|
||||
static const ALIGN_ASSET(2) char gQuestionMarkTitleCardENGTex[] = dgQuestionMarkTitleCardENGTex;
|
||||
|
||||
#define dgQuestionMarkTitleCardGERTex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardGERTex"
|
||||
static const ALIGN_ASSET(2) char gQuestionMarkTitleCardGERTex[] = dgQuestionMarkTitleCardGERTex;
|
||||
|
||||
#define dgQuestionMarkTitleCardFRATex "__OTR__textures/g_pn_57/gQuestionMarkTitleCardFRATex"
|
||||
static const ALIGN_ASSET(2) char gQuestionMarkTitleCardFRATex[] = dgQuestionMarkTitleCardFRATex;
|
||||
Reference in New Issue
Block a user