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 dgDeathMountainCloudFireTex "__OTR__objects/object_efc_doughnut/gDeathMountainCloudFireTex"
#ifdef _WIN32
static const __declspec(align(2)) char gDeathMountainCloudFireTex[] = dgDeathMountainCloudFireTex;
#else
static const char gDeathMountainCloudFireTex[] __attribute__((aligned (2))) = dgDeathMountainCloudFireTex;
#endif
#define dgDeathMountainCloudNormalTex "__OTR__objects/object_efc_doughnut/gDeathMountainCloudNormalTex"
#ifdef _WIN32
static const __declspec(align(2)) char gDeathMountainCloudNormalTex[] = dgDeathMountainCloudNormalTex;
#else
static const char gDeathMountainCloudNormalTex[] __attribute__((aligned (2))) = dgDeathMountainCloudNormalTex;
#endif
#define dgDeathMountainCloudCircleFieryDL "__OTR__objects/object_efc_doughnut/gDeathMountainCloudCircleFieryDL"
#ifdef _WIN32
static const __declspec(align(2)) char gDeathMountainCloudCircleFieryDL[] = dgDeathMountainCloudCircleFieryDL;
#else
static const char gDeathMountainCloudCircleFieryDL[] __attribute__((aligned (2))) = dgDeathMountainCloudCircleFieryDL;
#endif
#define dgDeathMountainCloudCircleNormalDL "__OTR__objects/object_efc_doughnut/gDeathMountainCloudCircleNormalDL"
#ifdef _WIN32
static const __declspec(align(2)) char gDeathMountainCloudCircleNormalDL[] = dgDeathMountainCloudCircleNormalDL;
#else
static const char gDeathMountainCloudCircleNormalDL[] __attribute__((aligned (2))) = dgDeathMountainCloudCircleNormalDL;
#endif
#include "align_asset_macro.h"
#define dgDeathMountainCloudFireTex "__OTR__objects/object_efc_doughnut/gDeathMountainCloudFireTex"
static const ALIGN_ASSET(2) char gDeathMountainCloudFireTex[] = dgDeathMountainCloudFireTex;
#define dgDeathMountainCloudNormalTex "__OTR__objects/object_efc_doughnut/gDeathMountainCloudNormalTex"
static const ALIGN_ASSET(2) char gDeathMountainCloudNormalTex[] = dgDeathMountainCloudNormalTex;
#define dgDeathMountainCloudCircleFieryDL "__OTR__objects/object_efc_doughnut/gDeathMountainCloudCircleFieryDL"
static const ALIGN_ASSET(2) char gDeathMountainCloudCircleFieryDL[] = dgDeathMountainCloudCircleFieryDL;
#define dgDeathMountainCloudCircleNormalDL "__OTR__objects/object_efc_doughnut/gDeathMountainCloudCircleNormalDL"
static const ALIGN_ASSET(2) char gDeathMountainCloudCircleNormalDL[] = dgDeathMountainCloudCircleNormalDL;