mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-21 19:41:36 +00:00
Some small changes...modified some stuff...
This commit is contained in:
parent
7b8af0f21d
commit
0d9f6f1534
5 changed files with 40 additions and 5 deletions
|
@ -428,14 +428,14 @@ static void Main_MenuDraw( void ) {
|
|||
// STONELANCE
|
||||
UI_DrawProportionalString( 320, 432, "DEMO FOR MATURE AUDIENCES DEMO", UI_CENTER|UI_SMALLFONT, text_color_normal );
|
||||
//UI_DrawString( 320, 460, Q3_VERSION " (c) 2002 - 2009 New Team Q3Rally | www.q3rally.com", UI_CENTER|UI_SMALLFONT, text_color_normal );
|
||||
UI_DrawString( 320, 460, Q3_VERSION " (c) 2002 - 2016 Team Q3Rally | www.q3rally.com", UI_CENTER|UI_SMALLFONT, text_color_normal );
|
||||
UI_DrawString( 320, 460, Q3_VERSION " (c) 2002 - 2018 | 16 Years of Q3R | www.q3rally.com | It's damn fast baby!", UI_CENTER|UI_SMALLFONT, text_color_normal );
|
||||
// UI_DrawProportionalString( 320, 372, "DEMO FOR MATURE AUDIENCES DEMO", UI_CENTER|UI_SMALLFONT, color );
|
||||
// UI_DrawString( 320, 400, "Quake III Arena(c) 1999-2000, Id Software, Inc. All Rights Reserved", UI_CENTER|UI_SMALLFONT, color );
|
||||
// END
|
||||
} else {
|
||||
// STONELANCE
|
||||
//UI_DrawString( 320, 460, Q3_VERSION " (c) 2002 - 2009 New Team Q3Rally | www.q3rally.com", UI_CENTER|UI_SMALLFONT, text_color_normal );
|
||||
UI_DrawString( 320, 460, Q3_VERSION " (c) 2002 - 2017 | 15 Years of Q3R | www.q3rally.com | It's damn fast baby!", UI_CENTER|UI_SMALLFONT, text_color_normal );
|
||||
UI_DrawString( 320, 460, Q3_VERSION " (c) 2002 - 2018 | 16 Years of Q3R | www.q3rally.com | It's damn fast baby!", UI_CENTER|UI_SMALLFONT, text_color_normal );
|
||||
// UI_DrawString( 320, 450, "Quake III Arena(c) 1999-2000, Id Software, Inc. All Rights Reserved", UI_CENTER|UI_SMALLFONT, color );
|
||||
// END
|
||||
}
|
||||
|
|
|
@ -99,7 +99,7 @@ static void UI_Rally_CreditMenu_Draw( void ) {
|
|||
UI_DrawProportionalString( 320, y, "Cyberdemon, Killaz and skw|d", UI_CENTER|UI_SMALLFONT, color_white );
|
||||
|
||||
y += 2.0 * PROP_HEIGHT * PROP_SMALL_SIZE_SCALE;
|
||||
UI_DrawString( 320, y, Q3_VERSION " (c) 2002 - 2017 | 15 Years of Q3R | www.q3rally.com", UI_CENTER|UI_SMALLFONT, text_color_normal );
|
||||
UI_DrawString( 320, y, Q3_VERSION " (c) 2002 - 2018 | 16 Years of Q3R | www.q3rally.com | It's damn fast baby!, UI_CENTER|UI_SMALLFONT, text_color_normal );
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#define BASETA "missionpack"
|
||||
|
||||
#ifndef PRODUCT_VERSION
|
||||
#define PRODUCT_VERSION "v0.0.1.0 r214"
|
||||
#define PRODUCT_VERSION "v0.0.1.0 r215"
|
||||
#endif
|
||||
|
||||
#ifndef PRODUCT_DATE
|
||||
|
|
27
engine/make-linux-portable.sh
Normal file
27
engine/make-linux-portable.sh
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
echo "Usage: $0 <arch> [make options]"
|
||||
echo " arch can be x86 or x86_64"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
ARCH=$1
|
||||
SDL_PREFIX=/home/zack/Local/SDL-2.0.4/build-$ARCH
|
||||
|
||||
if [ ! -d $SDL_PREFIX ] ; then
|
||||
echo "Change SDL_PREFIX in $0 to point to SDL build output"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
SDL_CFLAGS="`$SDL_PREFIX/bin/sdl2-config --cflags`"
|
||||
SDL_LIBS="`$SDL_PREFIX/bin/sdl2-config --libs`"
|
||||
|
||||
# Don't pass arch ($1) to make in $*
|
||||
shift 1
|
||||
|
||||
make ARCH=$ARCH USE_PORTABLE_RPATH=1 SDL_CFLAGS="$SDL_CFLAGS" SDL_LIBS="$SDL_LIBS" $*
|
||||
|
||||
# Copy SDL lib to where spearmint will read it from
|
||||
#mkdir -p build/release-linux-$ARCH/lib/$ARCH/
|
||||
#cp $SDL_PREFIX/lib/libSDL2-2.0.so.0 build/release-linux-$ARCH/lib/$ARCH/
|
|
@ -859,9 +859,17 @@ q3rallycode
|
|||
engine\cross-make-mingw64.sh
|
||||
[Open project files]
|
||||
0=engine\code\qcommon\q_shared.h
|
||||
1=engine\code\q3_ui\ui_menu.c
|
||||
2=engine\code\q3_ui\ui_rally_credits.c
|
||||
[Selected Project Files]
|
||||
Main=
|
||||
Selected=engine\code\qcommon\q_shared.h
|
||||
[engine\code\qcommon\q_shared.h]
|
||||
TopLine=51
|
||||
TopLine=47
|
||||
Caret=39,70
|
||||
[engine\code\q3_ui\ui_menu.c]
|
||||
TopLine=422
|
||||
Caret=63,431
|
||||
[engine\code\q3_ui\ui_rally_credits.c]
|
||||
TopLine=84
|
||||
Caret=65,102
|
||||
|
|
Loading…
Reference in a new issue