mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-29 15:21:54 +00:00
URL Update
This commit is contained in:
parent
f8fb5d0e1b
commit
5fb823ad95
3 changed files with 6 additions and 6 deletions
|
@ -2,8 +2,8 @@
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.drbeef.ioq3quest"
|
package="com.drbeef.ioq3quest"
|
||||||
android:installLocation="preferExternal"
|
android:installLocation="preferExternal"
|
||||||
android:versionCode="34"
|
android:versionCode="35"
|
||||||
android:versionName="0.23.0">
|
android:versionName="0.24.0">
|
||||||
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" />
|
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" />
|
||||||
<uses-feature android:glEsVersion="0x00030001" />
|
<uses-feature android:glEsVersion="0x00030001" />
|
||||||
<!-- <uses-feature android:name="oculus.software.overlay_keyboard" android:required="false"/>-->
|
<!-- <uses-feature android:name="oculus.software.overlay_keyboard" android:required="false"/>-->
|
||||||
|
|
|
@ -233,7 +233,7 @@ static void Main_MenuDraw( void ) {
|
||||||
} else {
|
} else {
|
||||||
UI_DrawString( 320, yPos, "Quake III Arena(c) 1999-2000, Id Software, Inc. All Rights Reserved", UI_CENTER|UI_SMALLFONT, color );
|
UI_DrawString( 320, yPos, "Quake III Arena(c) 1999-2000, Id Software, Inc. All Rights Reserved", UI_CENTER|UI_SMALLFONT, color );
|
||||||
yPos += SMALLCHAR_HEIGHT;
|
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;
|
yPos += SMALLCHAR_HEIGHT;
|
||||||
UI_DrawString( 320, yPos, "Join our discord for news, leaderboards and community!", UI_CENTER|UI_SMALLFONT, color );
|
UI_DrawString( 320, yPos, "Join our discord for news, leaderboards and community!", UI_CENTER|UI_SMALLFONT, color );
|
||||||
yPos += SMALLCHAR_HEIGHT;
|
yPos += SMALLCHAR_HEIGHT;
|
||||||
|
|
|
@ -160,7 +160,7 @@ static char* netnames[] = {
|
||||||
NULL
|
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[] = {
|
const char* punkbuster_items[] = {
|
||||||
"Disabled",
|
"Disabled",
|
||||||
|
@ -438,7 +438,7 @@ static void ArenaServers_UpdateMenu( void ) {
|
||||||
|
|
||||||
// update status bar
|
// update status bar
|
||||||
if( g_servertype >= UIAS_GLOBAL0 && g_servertype <= UIAS_GLOBAL5 ) {
|
if( g_servertype >= UIAS_GLOBAL0 && g_servertype <= UIAS_GLOBAL5 ) {
|
||||||
g_arenaservers.statusbar.string = quake3worldMessage;
|
g_arenaservers.statusbar.string = quake3questMessage;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
g_arenaservers.statusbar.string = "";
|
g_arenaservers.statusbar.string = "";
|
||||||
|
@ -472,7 +472,7 @@ static void ArenaServers_UpdateMenu( void ) {
|
||||||
|
|
||||||
// update status bar
|
// update status bar
|
||||||
if( g_servertype >= UIAS_GLOBAL0 && g_servertype <= UIAS_GLOBAL5 ) {
|
if( g_servertype >= UIAS_GLOBAL0 && g_servertype <= UIAS_GLOBAL5 ) {
|
||||||
g_arenaservers.statusbar.string = quake3worldMessage;
|
g_arenaservers.statusbar.string = quake3questMessage;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
g_arenaservers.statusbar.string = "";
|
g_arenaservers.statusbar.string = "";
|
||||||
|
|
Loading…
Reference in a new issue