Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build-targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ jobs:
release: "14.2"
usesh: true
prepare: |
pkg update -f
pkg upgrade -y
pkg install -y bash cmake git
run: |
git config --global --add safe.directory /home/runner/work/mvdsv/mvdsv
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ endif()
######################################################################################################

# Set base compiler flags
set(CFLAGS -Wall)
set(CFLAGS -Wall -std=gnu17)
set(LFLAGS)


Expand Down
2 changes: 1 addition & 1 deletion src/bothdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ typedef bool qbool;

// not used anymore in mvdsv
//#define MAX_INFO_STRING 196
#define MAX_SERVERINFO_STRING 512
#define MAX_SERVERINFO_STRING 1024
#define MAX_LOCALINFO_STRING 32768
#define MAX_KEY_STRING 64

Expand Down
6 changes: 3 additions & 3 deletions src/sv_demo_misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ void CleanName_Init (void)
chartbl[33] = chartbl[33 + 128] = '!';

// #
chartbl[35] = chartbl[35 + 128] = '#';
// chartbl[35] = chartbl[35 + 128] = '#';

// %
chartbl[37] = chartbl[37 + 128] = '%';
// chartbl[37] = chartbl[37 + 128] = '%';

// &
chartbl[38] = chartbl[38 + 128] = '&';
// chartbl[38] = chartbl[38 + 128] = '&';

// '
chartbl[39] = chartbl[39 + 128] = '\'';
Expand Down
2 changes: 1 addition & 1 deletion src/sv_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ cvar_t sv_kickuserinfospamcount = {"sv_kickuserinfospamcount", "300"};
cvar_t sv_maxuploadsize = {"sv_maxuploadsize", "1048576"};

#ifdef FTE_PEXT_CHUNKEDDOWNLOADS
cvar_t sv_downloadchunksperframe = {"sv_downloadchunksperframe", "15"};
cvar_t sv_downloadchunksperframe = {"sv_downloadchunksperframe", "30"};
#endif

#ifdef FTE_PEXT2_VOICECHAT
Expand Down