Simplify Asset Headers (#2474)
This commit is contained in:
@@ -1,9 +1,6 @@
|
||||
#pragma once
|
||||
#define dgDayOvercastSkyboxTLUT "__OTR__textures/vr_cloud1_pal_static/gDayOvercastSkyboxTLUT"
|
||||
#ifdef _WIN32
|
||||
static const __declspec(align(2)) char gDayOvercastSkyboxTLUT[] = dgDayOvercastSkyboxTLUT;
|
||||
#else
|
||||
static const char gDayOvercastSkyboxTLUT[] __attribute__((aligned (2))) = dgDayOvercastSkyboxTLUT;
|
||||
#endif
|
||||
|
||||
|
||||
#include "align_asset_macro.h"
|
||||
|
||||
#define dgDayOvercastSkyboxTLUT "__OTR__textures/vr_cloud1_pal_static/gDayOvercastSkyboxTLUT"
|
||||
static const ALIGN_ASSET(2) char gDayOvercastSkyboxTLUT[] = dgDayOvercastSkyboxTLUT;
|
||||
Reference in New Issue
Block a user