mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 16:15:07 -04:00
17 lines
616 B
C
17 lines
616 B
C
#pragma once
|
|
#define dgBombchuShopBgTLUT "__OTR__textures/vr_NSVR_pal_static/gBombchuShopBgTLUT"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gBombchuShopBgTLUT[] = dgBombchuShopBgTLUT;
|
|
#else
|
|
static const char gBombchuShopBgTLUT[] __attribute__((aligned (2))) = dgBombchuShopBgTLUT;
|
|
#endif
|
|
|
|
#define dgBombchuShopBg2TLUT "__OTR__textures/vr_NSVR_pal_static/gBombchuShopBg2TLUT"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gBombchuShopBg2TLUT[] = dgBombchuShopBg2TLUT;
|
|
#else
|
|
static const char gBombchuShopBg2TLUT[] __attribute__((aligned (2))) = dgBombchuShopBg2TLUT;
|
|
#endif
|
|
|
|
|