mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-23 01:42:19 -05:00
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
#pragma once
|
|
#define dgMarketDayBgTLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBgTLUT"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketDayBgTLUT[] = dgMarketDayBgTLUT;
|
|
#else
|
|
static const char gMarketDayBgTLUT[] __attribute__((aligned (2))) = dgMarketDayBgTLUT;
|
|
#endif
|
|
|
|
#define dgMarketDayBg2TLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBg2TLUT"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketDayBg2TLUT[] = dgMarketDayBg2TLUT;
|
|
#else
|
|
static const char gMarketDayBg2TLUT[] __attribute__((aligned (2))) = dgMarketDayBg2TLUT;
|
|
#endif
|
|
|
|
#define dgMarketDayBg3TLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBg3TLUT"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketDayBg3TLUT[] = dgMarketDayBg3TLUT;
|
|
#else
|
|
static const char gMarketDayBg3TLUT[] __attribute__((aligned (2))) = dgMarketDayBg3TLUT;
|
|
#endif
|
|
|
|
#define dgMarketDayBg4TLUT "__OTR__textures/vr_MDVR_pal_static/gMarketDayBg4TLUT"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketDayBg4TLUT[] = dgMarketDayBg4TLUT;
|
|
#else
|
|
static const char gMarketDayBg4TLUT[] __attribute__((aligned (2))) = dgMarketDayBg4TLUT;
|
|
#endif
|
|
|
|
|