mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-17 06:55:05 -05:00
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
#pragma once
|
|
#define dgMarketDayBgTex "__OTR__textures/vr_MDVR_static/gMarketDayBgTex"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketDayBgTex[] = dgMarketDayBgTex;
|
|
#else
|
|
static const char gMarketDayBgTex[] __attribute__((aligned (2))) = dgMarketDayBgTex;
|
|
#endif
|
|
|
|
#define dgMarketDay2BgTex "__OTR__textures/vr_MDVR_static/gMarketDay2BgTex"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketDay2BgTex[] = dgMarketDay2BgTex;
|
|
#else
|
|
static const char gMarketDay2BgTex[] __attribute__((aligned (2))) = dgMarketDay2BgTex;
|
|
#endif
|
|
|
|
#define dgMarketDay3BgTex "__OTR__textures/vr_MDVR_static/gMarketDay3BgTex"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketDay3BgTex[] = dgMarketDay3BgTex;
|
|
#else
|
|
static const char gMarketDay3BgTex[] __attribute__((aligned (2))) = dgMarketDay3BgTex;
|
|
#endif
|
|
|
|
#define dgMarketDay4BgTex "__OTR__textures/vr_MDVR_static/gMarketDay4BgTex"
|
|
#ifdef _WIN32
|
|
static const __declspec(align(2)) char gMarketDay4BgTex[] = dgMarketDay4BgTex;
|
|
#else
|
|
static const char gMarketDay4BgTex[] __attribute__((aligned (2))) = dgMarketDay4BgTex;
|
|
#endif
|
|
|
|
|