Fix linux workflow

This commit is contained in:
UnknownShadow200 2025-05-18 21:37:37 +10:00
parent e436de39b0
commit c7410c9792
4 changed files with 16 additions and 14 deletions

View File

@ -13,6 +13,7 @@ concurrency:
group: ${{ github.ref }}-linux group: ${{ github.ref }}-linux
cancel-in-progress: true cancel-in-progress: true
jobs:
#============================================ #============================================
# =============== 32 BIT LINUX ============== # =============== 32 BIT LINUX ==============
# =========================================== # ===========================================

View File

@ -28,11 +28,12 @@ static void AudioBase_FreeChunks(struct AudioChunk* chunks, int numChunks);
*#########################################################################################################################*/ *#########################################################################################################################*/
/* Simpler to just include subset of OpenAL actually use here instead of including */ /* Simpler to just include subset of OpenAL actually use here instead of including */
/* === BEGIN OPENAL HEADERS === */ /* === BEGIN OPENAL HEADERS === */
#if defined _WIN32 #if defined CC_BUILD_WIN
#define APIENTRY __cdecl #define APIENTRY __cdecl
#else #else
#define APIENTRY #define APIENTRY
#endif #endif
#define AL_NONE 0 #define AL_NONE 0
#define AL_GAIN 0x100A #define AL_GAIN 0x100A
#define AL_SOURCE_STATE 0x1010 #define AL_SOURCE_STATE 0x1010

View File

@ -161,7 +161,7 @@ typedef int CURLcode;
#define CURL_HTTP_VERSION_1_1 2L /* stick to HTTP 1.1 */ #define CURL_HTTP_VERSION_1_1 2L /* stick to HTTP 1.1 */
#if defined _WIN32 #if defined CC_BUILD_WIN
#define APIENTRY __cdecl #define APIENTRY __cdecl
#else #else
#define APIENTRY #define APIENTRY