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
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fancy2209
SRB2
Commits
addf2bb3
Commit
addf2bb3
authored
5 years ago
by
Alam Ed Arias
Browse files
Options
Downloads
Patches
Plain Diff
Fix NONET build
parent
8a144274
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/hu_stuff.c
+3
-1
3 additions, 1 deletion
src/hu_stuff.c
with
3 additions
and
1 deletion
src/hu_stuff.c
+
3
−
1
View file @
addf2bb3
...
...
@@ -1072,7 +1072,9 @@ static INT16 typelines = 1; // number of drawfill lines we need when drawing the
//
boolean
HU_Responder
(
event_t
*
ev
)
{
#ifndef NONET
INT32
c
=
0
;
#endif
if
(
ev
->
type
!=
ev_keydown
)
return
false
;
...
...
@@ -1099,9 +1101,9 @@ boolean HU_Responder(event_t *ev)
return false;
}*/
//We don't actually care about that unless we get splitscreen netgames. :V
#ifndef NONET
c
=
(
INT32
)
ev
->
data1
;
#ifndef NONET
if
(
!
chat_on
)
{
// enter chat mode
...
...
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