mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 16:15:07 -04:00
38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
|
#pragma once
|
||
|
#define dgDaySkybox1Tex "__OTR__textures/vr_fine1_static/gDaySkybox1Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gDaySkybox1Tex[] = dgDaySkybox1Tex;
|
||
|
#else
|
||
|
static const char gDaySkybox1Tex[] __attribute__((aligned (2))) = dgDaySkybox1Tex;
|
||
|
#endif
|
||
|
|
||
|
#define dgDaySkybox2Tex "__OTR__textures/vr_fine1_static/gDaySkybox2Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gDaySkybox2Tex[] = dgDaySkybox2Tex;
|
||
|
#else
|
||
|
static const char gDaySkybox2Tex[] __attribute__((aligned (2))) = dgDaySkybox2Tex;
|
||
|
#endif
|
||
|
|
||
|
#define dgDaySkybox3Tex "__OTR__textures/vr_fine1_static/gDaySkybox3Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gDaySkybox3Tex[] = dgDaySkybox3Tex;
|
||
|
#else
|
||
|
static const char gDaySkybox3Tex[] __attribute__((aligned (2))) = dgDaySkybox3Tex;
|
||
|
#endif
|
||
|
|
||
|
#define dgDaySkybox4Tex "__OTR__textures/vr_fine1_static/gDaySkybox4Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gDaySkybox4Tex[] = dgDaySkybox4Tex;
|
||
|
#else
|
||
|
static const char gDaySkybox4Tex[] __attribute__((aligned (2))) = dgDaySkybox4Tex;
|
||
|
#endif
|
||
|
|
||
|
#define dgDaySkybox5Tex "__OTR__textures/vr_fine1_static/gDaySkybox5Tex"
|
||
|
#ifdef _WIN32
|
||
|
static const __declspec(align(2)) char gDaySkybox5Tex[] = dgDaySkybox5Tex;
|
||
|
#else
|
||
|
static const char gDaySkybox5Tex[] __attribute__((aligned (2))) = dgDaySkybox5Tex;
|
||
|
#endif
|
||
|
|
||
|
|