mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-21 19:41:36 +00:00
fixed plates bug
fixed splash screen bug in HUD
This commit is contained in:
parent
39eba38af0
commit
441369523f
4 changed files with 47 additions and 8 deletions
|
@ -443,6 +443,38 @@ models/players/plates/eu_greatbritain
|
|||
}
|
||||
}
|
||||
|
||||
models/players/plates/eu_austria
|
||||
{
|
||||
{
|
||||
map models/players/plates/eu_austria.tga
|
||||
rgbGen lightingdiffuse
|
||||
}
|
||||
}
|
||||
|
||||
models/players/plates/eu_croatia
|
||||
{
|
||||
{
|
||||
map models/players/plates/eu_croatia.tga
|
||||
rgbGen lightingdiffuse
|
||||
}
|
||||
}
|
||||
|
||||
models/players/plates/eu_france
|
||||
{
|
||||
{
|
||||
map models/players/plates/eu_france.tga
|
||||
rgbGen lightingdiffuse
|
||||
}
|
||||
}
|
||||
|
||||
models/players/plates/eu_slowenia
|
||||
{
|
||||
{
|
||||
map models/players/plates/eu_slowenia.tga
|
||||
rgbGen lightingdiffuse
|
||||
}
|
||||
}
|
||||
|
||||
models/players/plates/usa_Abu_Dhabi
|
||||
{
|
||||
{
|
||||
|
@ -451,6 +483,7 @@ models/players/plates/usa_Abu_Dhabi
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
models/players/plates/usa_alaska_susitna
|
||||
{
|
||||
{
|
||||
|
|
|
@ -842,7 +842,7 @@ static float CG_DrawSDKMessage( float y ) {
|
|||
}
|
||||
|
||||
x = 4;
|
||||
w = (CG_DrawStrlen("does not represent the finished game.") * TINYCHAR_WIDTH);
|
||||
w = (CG_DrawStrlen("Not the finished game.") * TINYCHAR_WIDTH);
|
||||
|
||||
y -= 3*TINYCHAR_HEIGHT+2;
|
||||
|
||||
|
@ -850,9 +850,9 @@ static float CG_DrawSDKMessage( float y ) {
|
|||
|
||||
CG_DrawTinyStringColor( x, y, Q3_VERSION, colorWhite);
|
||||
y += TINYCHAR_HEIGHT;
|
||||
CG_DrawTinyStringColor( x, y, "For development purposes only, this", colorWhite);
|
||||
CG_DrawTinyStringColor( x, y, "Beta Version", colorWhite);
|
||||
y += TINYCHAR_HEIGHT;
|
||||
CG_DrawTinyStringColor( x, y, "does not represent the finished game.", colorWhite);
|
||||
CG_DrawTinyStringColor( x, y, "Not the finished game.", colorWhite);
|
||||
y += TINYCHAR_HEIGHT;
|
||||
|
||||
y -= 3*TINYCHAR_HEIGHT+2;
|
||||
|
|
|
@ -101,6 +101,8 @@ cr_line credits[] = { // edit this as necessary for your credits
|
|||
{ "Art and Models", UI_CENTER|UI_SMALLFONT|UI_DROPSHADOW|UI_PULSE, &color_headertext },
|
||||
{ "", UI_CENTER|UI_SMALLFONT|UI_DROPSHADOW, &color_blue },
|
||||
{ "Jeff 'Stecki' Garstecki", UI_CENTER|UI_SMALLFONT|UI_DROPSHADOW, &color_headertext },
|
||||
{ "Per 'P3rlE' Thormann", UI_CENTER|UI_SMALLFONT|UI_DROPSHADOW, &color_headertext },
|
||||
{ "'insellium'", UI_CENTER|UI_SMALLFONT|UI_DROPSHADOW, &color_headertext },
|
||||
{ "'Steel Painter'", UI_CENTER|UI_SMALLFONT|UI_DROPSHADOW, &color_headertext },
|
||||
{ "Thomas aka. 'To-mos'", UI_CENTER|UI_SMALLFONT|UI_DROPSHADOW, &color_headertext },
|
||||
{ "", UI_CENTER|UI_SMALLFONT|UI_DROPSHADOW, &color_blue },
|
||||
|
|
|
@ -878,9 +878,10 @@ q3rallycode
|
|||
17=engine\code\q3_ui\ui_rally_servers.c
|
||||
18=engine\code\qcommon\qcommon.h
|
||||
19=engine\code\game\g_utils.c
|
||||
20=engine\code\cgame\cg_rally_hud.c
|
||||
[Selected Project Files]
|
||||
Main=
|
||||
Selected=engine\code\qcommon\q_shared.h
|
||||
Selected=engine\code\cgame\cg_rally_hud.c
|
||||
[engine\code\qcommon\files.c]
|
||||
TopLine=3681
|
||||
Caret=1,3695
|
||||
|
@ -906,8 +907,8 @@ Caret=1,670
|
|||
TopLine=417
|
||||
Caret=63,438
|
||||
[engine\code\q3_ui\ui_credits.c]
|
||||
TopLine=115
|
||||
Caret=11,129
|
||||
TopLine=87
|
||||
Caret=5,105
|
||||
[engine\code\q3_ui\ui_rally_controls.c]
|
||||
TopLine=548
|
||||
Caret=80,574
|
||||
|
@ -922,9 +923,9 @@ TopLine=211
|
|||
Caret=1,225
|
||||
[engine\code\q3_ui\ui_rally_credits.c]
|
||||
TopLine=79
|
||||
Caret=56,93
|
||||
Caret=118,93
|
||||
[engine\code\qcommon\q_shared.h]
|
||||
TopLine=53
|
||||
TopLine=1
|
||||
Caret=39,70
|
||||
[engine\code\ui\ui_main.c]
|
||||
TopLine=3012
|
||||
|
@ -941,3 +942,6 @@ Caret=1,267
|
|||
[engine\code\game\g_utils.c]
|
||||
TopLine=679
|
||||
Caret=1,693
|
||||
[engine\code\cgame\cg_rally_hud.c]
|
||||
TopLine=831
|
||||
Caret=26,845
|
||||
|
|
Loading…
Reference in a new issue