Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Kart-Public
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kart Krew
Kart-Public
Commits
05b65b6b
Commit
05b65b6b
authored
May 17, 2020
by
James R.
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/master' into http-downloads-auth
parents
64e27f36
cb9e6473
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!233
Command for http downloads with basic auth
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
src/d_main.c
+2
-0
2 additions, 0 deletions
src/d_main.c
src/doomdef.h
+1
-1
1 addition, 1 deletion
src/doomdef.h
src/k_kart.h
+1
-1
1 addition, 1 deletion
src/k_kart.h
src/mserv.h
+1
-1
1 addition, 1 deletion
src/mserv.h
src/s_sound.h
+1
-1
1 addition, 1 deletion
src/s_sound.h
with
6 additions
and
4 deletions
src/d_main.c
+
2
−
0
View file @
05b65b6b
...
...
@@ -143,6 +143,8 @@ boolean advancedemo;
INT32
debugload
=
0
;
#endif
char
savegamename
[
256
];
#ifdef _arch_dreamcast
char
srb2home
[
256
]
=
"/cd"
;
char
srb2path
[
256
]
=
"/cd"
;
...
...
This diff is collapsed.
Click to expand it.
src/doomdef.h
+
1
−
1
View file @
05b65b6b
...
...
@@ -506,7 +506,7 @@ void CONS_Debug(INT32 debugflags, const char *fmt, ...) FUNCDEBUG;
// Things that used to be in dstrings.h
#define SAVEGAMENAME "srb2sav"
char
savegamename
[
256
];
extern
char
savegamename
[
256
];
// m_misc.h
#ifdef GETTEXT
...
...
This diff is collapsed.
Click to expand it.
src/k_kart.h
+
1
−
1
View file @
05b65b6b
...
...
@@ -11,7 +11,7 @@
#define KART_FULLTURN 800
UINT8
colortranslations
[
MAXTRANSLATIONS
][
16
];
extern
UINT8
colortranslations
[
MAXTRANSLATIONS
][
16
];
extern
const
char
*
KartColor_Names
[
MAXSKINCOLORS
];
extern
const
UINT8
KartColor_Opposite
[
MAXSKINCOLORS
*
2
];
void
K_RainbowColormap
(
UINT8
*
dest_colormap
,
UINT8
skincolor
);
...
...
This diff is collapsed.
Click to expand it.
src/mserv.h
+
1
−
1
View file @
05b65b6b
...
...
@@ -68,7 +68,7 @@ extern consvar_t cv_masterserver, cv_servername;
// < 0 to not connect (usually -1) (offline mode)
// == 0 to show all rooms, not a valid hosting room
// anything else is whatever room the MS assigns to that number (online mode)
INT16
ms_RoomId
;
extern
INT16
ms_RoomId
;
const
char
*
GetMasterServerPort
(
void
);
const
char
*
GetMasterServerIP
(
void
);
...
...
This diff is collapsed.
Click to expand it.
src/s_sound.h
+
1
−
1
View file @
05b65b6b
...
...
@@ -236,7 +236,7 @@ void S_StopSoundByNum(sfxenum_t sfxnum);
#ifdef MUSICSLOT_COMPATIBILITY
// For compatibility with code/scripts relying on older versions
// This is a list of all the "special" slot names and their associated numbers
const
char
*
compat_special_music_slots
[
16
];
extern
const
char
*
compat_special_music_slots
[
16
];
#endif
#endif
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