Simplify Asset Headers (#2474)

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

View File

@@ -1,30 +1,15 @@
#pragma once
#define dgStableBgTLUT "__OTR__textures/vr_MLVR_pal_static/gStableBgTLUT"
#ifdef _WIN32
static const __declspec(align(2)) char gStableBgTLUT[] = dgStableBgTLUT;
#else
static const char gStableBgTLUT[] __attribute__((aligned (2))) = dgStableBgTLUT;
#endif
#define dgStableBg2TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg2TLUT"
#ifdef _WIN32
static const __declspec(align(2)) char gStableBg2TLUT[] = dgStableBg2TLUT;
#else
static const char gStableBg2TLUT[] __attribute__((aligned (2))) = dgStableBg2TLUT;
#endif
#define dgStableBg3TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg3TLUT"
#ifdef _WIN32
static const __declspec(align(2)) char gStableBg3TLUT[] = dgStableBg3TLUT;
#else
static const char gStableBg3TLUT[] __attribute__((aligned (2))) = dgStableBg3TLUT;
#endif
#define dgStableBg4TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg4TLUT"
#ifdef _WIN32
static const __declspec(align(2)) char gStableBg4TLUT[] = dgStableBg4TLUT;
#else
static const char gStableBg4TLUT[] __attribute__((aligned (2))) = dgStableBg4TLUT;
#endif
#include "align_asset_macro.h"
#define dgStableBgTLUT "__OTR__textures/vr_MLVR_pal_static/gStableBgTLUT"
static const ALIGN_ASSET(2) char gStableBgTLUT[] = dgStableBgTLUT;
#define dgStableBg2TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg2TLUT"
static const ALIGN_ASSET(2) char gStableBg2TLUT[] = dgStableBg2TLUT;
#define dgStableBg3TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg3TLUT"
static const ALIGN_ASSET(2) char gStableBg3TLUT[] = dgStableBg3TLUT;
#define dgStableBg4TLUT "__OTR__textures/vr_MLVR_pal_static/gStableBg4TLUT"
static const ALIGN_ASSET(2) char gStableBg4TLUT[] = dgStableBg4TLUT;