mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 08:05:07 -04:00
10 lines
362 B
C
10 lines
362 B
C
#pragma once
|
|
#define dgSunriseOvercastSkyboxTLUT "__OTR__textures/vr_cloud0_pal_static/gSunriseOvercastSkyboxTLUT"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gSunriseOvercastSkyboxTLUT[] = dgSunriseOvercastSkyboxTLUT;
|
|
#else
|
|
static const char gSunriseOvercastSkyboxTLUT[] __attribute__((aligned (2))) = dgSunriseOvercastSkyboxTLUT;
|
|
#endif
|
|
|
|
|