mirror of
https://github.com/DrBeef/QuakeQuest.git
synced 2024-11-22 04:01:14 +00:00
Bug fixes
This commit is contained in:
parent
28163172b4
commit
31faa499ef
2 changed files with 7 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.drbeef.quakequest"
|
||||
android:versionCode="4"
|
||||
android:versionName="1.2.0" android:installLocation="auto" >
|
||||
android:versionCode="5"
|
||||
android:versionName="1.2.1" android:installLocation="auto" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="25" />
|
||||
<!-- Tell the system this app requires OpenGL ES 3.1. -->
|
||||
|
|
|
@ -1906,6 +1906,10 @@ static void M_Options_Key (int k, int ascii)
|
|||
case 4:
|
||||
{
|
||||
Cvar_SetValueQuick (&bullettime, (1-bullettime.integer));
|
||||
if (bullettime.integer == 0)
|
||||
{
|
||||
Cvar_SetValueQuick(&slowmo, 1.0f);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 5:
|
||||
|
@ -3566,7 +3570,7 @@ static void M_Credits_Draw (void)
|
|||
" QQQQQQQQ QQQQQQQQ ",
|
||||
" QQQ QQQ ",
|
||||
" Q Q ",
|
||||
" Q Q v1.2.0 ");
|
||||
" Q Q v1.2.1 ");
|
||||
|
||||
int i, l, linelength, firstline, lastline, lines;
|
||||
for (i = 0, linelength = 0, firstline = 9999, lastline = -1;m_credits_message[i];i++)
|
||||
|
|
Loading…
Reference in a new issue