Skip to content
Snippets Groups Projects
Commit 7cf1a1aa authored by Alam Ed Arias's avatar Alam Ed Arias
Browse files

fixup cmake merge

parent 244fb0b2
No related branches found
No related tags found
No related merge requests found
......@@ -585,8 +585,6 @@ $(BIN)/$(EXENAME): $(POS) $(OBJS)
-$(MKDIR) $(BIN)
@echo Linking $(EXENAME)...
$(LD) $(LDFLAGS) $(OBJS) -o $(BIN)/$(EXENAME) $(LIBS)
@echo $(LD) $(LDFLAGS) $(OBJS) -o $(BIN)/$(EXENAME) $(LIBS)
@echo $(CFLAGS)
ifndef VALGRIND
ifndef NOOBJDUMP
@echo Dumping debugging info
......
......@@ -22,6 +22,5 @@
#define ASSET_HASH_PLAYER_DTA "cfca0f1c73023cbbd8f844f45480f799"
#define ASSET_HASH_RINGS_DTA "85901ad4bf94637e5753d2ac2c03ea26"
#define
#endif
#endif
......@@ -20,7 +20,11 @@
/// \file
/// \brief SRB2 system stuff for SDL
#ifdef CMAKECONFIG
#include "config.h"
#else
#include "config.h.in"
#endif
#ifndef _WIN32_WCE
#include <signal.h>
......@@ -1658,7 +1662,11 @@ void I_UpdateMumble(const mobj_t *mobj, const listener_t listener)
return;
if(mumble->uiVersion != 2) {
#ifdef VERSIONSTRINGW
wcsncpy(mumble->name, L"SRB2 "VERSIONSTRINGW, 256);
#else
wcsncpy(mumble->name, L"SRB2 "VERSIONSTRING, 256);
#endif
wcsncpy(mumble->description, L"Sonic Robo Blast 2 with integrated Mumble Link support.", 2048);
mumble->uiVersion = 2;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment