mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 01:10:51 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@560 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b5a81483f2
commit
599dda879f
1 changed files with 6 additions and 8 deletions
|
@ -114,8 +114,6 @@ static char *duke3ddef = "duke3d.def";
|
||||||
|
|
||||||
extern long lastvisinc;
|
extern long lastvisinc;
|
||||||
|
|
||||||
static char colstrip[1024];
|
|
||||||
|
|
||||||
int shareware = 0;
|
int shareware = 0;
|
||||||
int gametype = 0;
|
int gametype = 0;
|
||||||
|
|
||||||
|
@ -271,6 +269,7 @@ void setgamepalette(struct player_struct *player, char *pal, int set)
|
||||||
const char *stripcolorcodes(const char *t)
|
const char *stripcolorcodes(const char *t)
|
||||||
{
|
{
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
static char colstrip[1024];
|
||||||
|
|
||||||
while (*t)
|
while (*t)
|
||||||
{
|
{
|
||||||
|
@ -2322,12 +2321,6 @@ static void tics(void)
|
||||||
{
|
{
|
||||||
int ii, k = 0, p = 8;
|
int ii, k = 0, p = 8;
|
||||||
|
|
||||||
if (ud.screen_size != 0 && GTFLAGS(GAMETYPE_FLAG_FRAGBAR) && ud.multimode > 1)
|
|
||||||
{
|
|
||||||
k = 8;
|
|
||||||
if (ud.multimode > 4)
|
|
||||||
k += 8;
|
|
||||||
}
|
|
||||||
Bsprintf(b,"%ld",max(j,0));
|
Bsprintf(b,"%ld",max(j,0));
|
||||||
// minitext(scale(windowx1,320,xdim)+1,scale(windowy1,200,ydim)+1,b,(timer*AVERAGEFRAMES)/(i-frameval[framecnt]) < 40?2:0,26);
|
// minitext(scale(windowx1,320,xdim)+1,scale(windowy1,200,ydim)+1,b,(timer*AVERAGEFRAMES)/(i-frameval[framecnt]) < 40?2:0,26);
|
||||||
|
|
||||||
|
@ -2513,6 +2506,7 @@ static void showtwoscreens(void)
|
||||||
int flags = GetGameVar("LOGO_FLAGS",255, -1, -1);
|
int flags = GetGameVar("LOGO_FLAGS",255, -1, -1);
|
||||||
|
|
||||||
MUSIC_StopSong();
|
MUSIC_StopSong();
|
||||||
|
FX_StopAllSounds();
|
||||||
|
|
||||||
if (!VOLUMEALL || flags & LOGO_FLAG_SHAREWARESCREENS)
|
if (!VOLUMEALL || flags & LOGO_FLAG_SHAREWARESCREENS)
|
||||||
{
|
{
|
||||||
|
@ -9108,8 +9102,12 @@ static void Logo(void)
|
||||||
clearview(0L);
|
clearview(0L);
|
||||||
nextpage();
|
nextpage();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (logoflags & LOGO_FLAG_PLAYMUSIC)
|
if (logoflags & LOGO_FLAG_PLAYMUSIC)
|
||||||
|
{
|
||||||
|
music_select = -1; // hack
|
||||||
playmusic(&env_music_fn[0][0]);
|
playmusic(&env_music_fn[0][0]);
|
||||||
|
}
|
||||||
|
|
||||||
if (!NAM)
|
if (!NAM)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue