1
0
mirror of https://github.com/HarbourMasters/Shipwright.git synced 2025-03-03 10:11:51 -05:00

10 lines
356 B
C
Raw Normal View History

2023-02-14 14:29:46 +01:00
#pragma once
#define dgSunsetOvercastSkyboxTLUT "__OTR__textures/vr_cloud2_pal_static/gSunsetOvercastSkyboxTLUT"
#ifdef _WIN32
static const __declspec(align(2)) char gSunsetOvercastSkyboxTLUT[] = dgSunsetOvercastSkyboxTLUT;
#else
static const char gSunsetOvercastSkyboxTLUT[] __attribute__((aligned (2))) = dgSunsetOvercastSkyboxTLUT;
#endif