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