mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-23 01:42:19 -05:00
31 lines
1.2 KiB
C
31 lines
1.2 KiB
C
#pragma once
|
|
#define dgMarketRuinsBgTLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBgTLUT"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketRuinsBgTLUT[] = dgMarketRuinsBgTLUT;
|
|
#else
|
|
static const char gMarketRuinsBgTLUT[] __attribute__((aligned (2))) = dgMarketRuinsBgTLUT;
|
|
#endif
|
|
|
|
#define dgMarketRuinsBg2TLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBg2TLUT"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketRuinsBg2TLUT[] = dgMarketRuinsBg2TLUT;
|
|
#else
|
|
static const char gMarketRuinsBg2TLUT[] __attribute__((aligned (2))) = dgMarketRuinsBg2TLUT;
|
|
#endif
|
|
|
|
#define dgMarketRuinsBg3TLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBg3TLUT"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketRuinsBg3TLUT[] = dgMarketRuinsBg3TLUT;
|
|
#else
|
|
static const char gMarketRuinsBg3TLUT[] __attribute__((aligned (2))) = dgMarketRuinsBg3TLUT;
|
|
#endif
|
|
|
|
#define dgMarketRuinsBg4TLUT "__OTR__textures/vr_RUVR_pal_static/gMarketRuinsBg4TLUT"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketRuinsBg4TLUT[] = dgMarketRuinsBg4TLUT;
|
|
#else
|
|
static const char gMarketRuinsBg4TLUT[] __attribute__((aligned (2))) = dgMarketRuinsBg4TLUT;
|
|
#endif
|
|
|
|
|