Bug fixes

This commit is contained in:
Simon 2019-06-14 12:42:15 +01:00
parent 28163172b4
commit 31faa499ef
2 changed files with 7 additions and 3 deletions

View file

@ -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. -->

View file

@ -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++)