mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-23 01:42:19 -05:00
24 lines
920 B
C
24 lines
920 B
C
|
#pragma once
|
||
|
#define dgSariasHouseBgTLUT "__OTR__textures/vr_K5VR_pal_static/gSariasHouseBgTLUT"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gSariasHouseBgTLUT[] = dgSariasHouseBgTLUT;
|
||
|
#else
|
||
|
static const char gSariasHouseBgTLUT[] __attribute__((aligned (2))) = dgSariasHouseBgTLUT;
|
||
|
#endif
|
||
|
|
||
|
#define dgSariasHouseBg2TLUT "__OTR__textures/vr_K5VR_pal_static/gSariasHouseBg2TLUT"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gSariasHouseBg2TLUT[] = dgSariasHouseBg2TLUT;
|
||
|
#else
|
||
|
static const char gSariasHouseBg2TLUT[] __attribute__((aligned (2))) = dgSariasHouseBg2TLUT;
|
||
|
#endif
|
||
|
|
||
|
#define dgSariasHouseBg3TLUT "__OTR__textures/vr_K5VR_pal_static/gSariasHouseBg3TLUT"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gSariasHouseBg3TLUT[] = dgSariasHouseBg3TLUT;
|
||
|
#else
|
||
|
static const char gSariasHouseBg3TLUT[] __attribute__((aligned (2))) = dgSariasHouseBg3TLUT;
|
||
|
#endif
|
||
|
|
||
|
|