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