Other fixes

This commit is contained in:
L 2023-05-07 21:32:30 +02:00
parent 72f090b289
commit f68b402d24
4 changed files with 11 additions and 4 deletions

View file

@ -219,6 +219,7 @@ if (WITH_CLIENT)
file(GLOB_RECURSE SOURCES_CLIENT "code/client/*.c" "code/client/*.cpp")
file(GLOB_RECURSE SOURCES_UILIB "code/uilib/*.c" "code/uilib/*.cpp")
file(GLOB_RECURSE SOURCES_LIBS "code/sdl/*.c")
file(GLOB_RECURSE SOURCES_RENDERER "code/renderercommon/*.c" "code/renderergl2/*.c" "code/renderergl2/*.cpp")
set(SOURCES_CLIENT_APP ${SOURCES_APP} ${SOURCES_SERVER} ${SOURCES_CLIENT} ${SOURCES_UILIB} ${SOURCES_LIBS})
add_executable(openmohaa ${SOURCES_CLIENT_APP} ${SOURCES_PLATFORM_SPECIFIC})

View file

@ -20,6 +20,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/
#ifdef __cplusplus
extern "C" {
#endif
void S_Init( void );
void S_Shutdown( void );
@ -115,3 +118,7 @@ void S_StopCapture( void );
void S_MasterGain( float gain );
#endif
#ifdef __cplusplus
}
#endif

View file

@ -20,9 +20,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/
//
#ifndef __TR_TYPES_H
#define __TR_TYPES_H
#pragma once
#define MAX_DLIGHTS 32 // can't be increased, because bit flags are used on surfaces
@ -59,5 +58,3 @@ typedef enum {
STEREO_LEFT,
STEREO_RIGHT
} stereoFrame_t;
#endif // __TR_TYPES_H

View file

@ -35,6 +35,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include "tr_postprocess.h"
#include "../renderercommon/iqm.h"
#include "../renderercommon/qgl.h"
#include "../renderercommon/tr_types.h"
#include "../qcommon/tiki.h"
#ifdef __cplusplus
extern "C" {