URL Update

This commit is contained in:
Simon 2022-03-16 23:18:52 +00:00
parent f8fb5d0e1b
commit 5fb823ad95
3 changed files with 6 additions and 6 deletions

View file

@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.drbeef.ioq3quest"
android:installLocation="preferExternal"
android:versionCode="34"
android:versionName="0.23.0">
android:versionCode="35"
android:versionName="0.24.0">
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" />
<uses-feature android:glEsVersion="0x00030001" />
<!-- <uses-feature android:name="oculus.software.overlay_keyboard" android:required="false"/>-->

View file

@ -233,7 +233,7 @@ static void Main_MenuDraw( void ) {
} else {
UI_DrawString( 320, yPos, "Quake III Arena(c) 1999-2000, Id Software, Inc. All Rights Reserved", UI_CENTER|UI_SMALLFONT, color );
yPos += SMALLCHAR_HEIGHT;
UI_DrawString( 320, yPos, "Quake3Quest " Q3QVERSION " - Visit Quake3Quest.com for discord invite.", UI_CENTER|UI_SMALLFONT, color );
UI_DrawString( 320, yPos, "Quake3Quest " Q3QVERSION " - Visit quake3.quakevr.com for discord invite.", UI_CENTER|UI_SMALLFONT, color );
yPos += SMALLCHAR_HEIGHT;
UI_DrawString( 320, yPos, "Join our discord for news, leaderboards and community!", UI_CENTER|UI_SMALLFONT, color );
yPos += SMALLCHAR_HEIGHT;

View file

@ -160,7 +160,7 @@ static char* netnames[] = {
NULL
};
static char quake3worldMessage[] = "Visit www.quake3world.com - News, Community, Events, Files";
static char quake3questMessage[] = "Visit quake3.quakevr.com - For the Team Beef Discord invite for news/events/chat";
const char* punkbuster_items[] = {
"Disabled",
@ -438,7 +438,7 @@ static void ArenaServers_UpdateMenu( void ) {
// update status bar
if( g_servertype >= UIAS_GLOBAL0 && g_servertype <= UIAS_GLOBAL5 ) {
g_arenaservers.statusbar.string = quake3worldMessage;
g_arenaservers.statusbar.string = quake3questMessage;
}
else {
g_arenaservers.statusbar.string = "";
@ -472,7 +472,7 @@ static void ArenaServers_UpdateMenu( void ) {
// update status bar
if( g_servertype >= UIAS_GLOBAL0 && g_servertype <= UIAS_GLOBAL5 ) {
g_arenaservers.statusbar.string = quake3worldMessage;
g_arenaservers.statusbar.string = quake3questMessage;
}
else {
g_arenaservers.statusbar.string = "";