Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SRB2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Krabs
SRB2
Commits
7cf1a1aa
Commit
7cf1a1aa
authored
10 years ago
by
Alam Ed Arias
Browse files
Options
Downloads
Patches
Plain Diff
fixup cmake merge
parent
244fb0b2
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/Makefile
+0
-2
0 additions, 2 deletions
src/Makefile
src/config.h.in
+0
-1
0 additions, 1 deletion
src/config.h.in
src/sdl/i_system.c
+8
-0
8 additions, 0 deletions
src/sdl/i_system.c
with
8 additions
and
3 deletions
src/Makefile
+
0
−
2
View file @
7cf1a1aa
...
@@ -585,8 +585,6 @@ $(BIN)/$(EXENAME): $(POS) $(OBJS)
...
@@ -585,8 +585,6 @@ $(BIN)/$(EXENAME): $(POS) $(OBJS)
-$(
MKDIR
)
$(
BIN
)
-$(
MKDIR
)
$(
BIN
)
@
echo
Linking
$(
EXENAME
)
...
@
echo
Linking
$(
EXENAME
)
...
$(
LD
)
$(
LDFLAGS
)
$(
OBJS
)
-o
$(
BIN
)
/
$(
EXENAME
)
$(
LIBS
)
$(
LD
)
$(
LDFLAGS
)
$(
OBJS
)
-o
$(
BIN
)
/
$(
EXENAME
)
$(
LIBS
)
@
echo
$(
LD
)
$(
LDFLAGS
)
$(
OBJS
)
-o
$(
BIN
)
/
$(
EXENAME
)
$(
LIBS
)
@
echo
$(
CFLAGS
)
ifndef
VALGRIND
ifndef
VALGRIND
ifndef
NOOBJDUMP
ifndef
NOOBJDUMP
@
echo
Dumping debugging info
@
echo
Dumping debugging info
...
...
This diff is collapsed.
Click to expand it.
src/config.h.in
+
0
−
1
View file @
7cf1a1aa
...
@@ -22,6 +22,5 @@
...
@@ -22,6 +22,5 @@
#define ASSET_HASH_PLAYER_DTA "cfca0f1c73023cbbd8f844f45480f799"
#define ASSET_HASH_PLAYER_DTA "cfca0f1c73023cbbd8f844f45480f799"
#define ASSET_HASH_RINGS_DTA "85901ad4bf94637e5753d2ac2c03ea26"
#define ASSET_HASH_RINGS_DTA "85901ad4bf94637e5753d2ac2c03ea26"
#define
#endif
#endif
#endif
#endif
This diff is collapsed.
Click to expand it.
src/sdl/i_system.c
+
8
−
0
View file @
7cf1a1aa
...
@@ -20,7 +20,11 @@
...
@@ -20,7 +20,11 @@
/// \file
/// \file
/// \brief SRB2 system stuff for SDL
/// \brief SRB2 system stuff for SDL
#ifdef CMAKECONFIG
#include
"config.h"
#include
"config.h"
#else
#include
"config.h.in"
#endif
#ifndef _WIN32_WCE
#ifndef _WIN32_WCE
#include
<signal.h>
#include
<signal.h>
...
@@ -1658,7 +1662,11 @@ void I_UpdateMumble(const mobj_t *mobj, const listener_t listener)
...
@@ -1658,7 +1662,11 @@ void I_UpdateMumble(const mobj_t *mobj, const listener_t listener)
return
;
return
;
if
(
mumble
->
uiVersion
!=
2
)
{
if
(
mumble
->
uiVersion
!=
2
)
{
#ifdef VERSIONSTRINGW
wcsncpy
(
mumble
->
name
,
L"SRB2 "
VERSIONSTRINGW
,
256
);
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
);
wcsncpy
(
mumble
->
description
,
L"Sonic Robo Blast 2 with integrated Mumble Link support."
,
2048
);
mumble
->
uiVersion
=
2
;
mumble
->
uiVersion
=
2
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment