Small Tweaks

Increase base HUNK size
Prevent enemy pain causing haptics
This commit is contained in:
Simon 2020-07-16 23:40:18 +01:00
parent c8bc1f14a5
commit cd929657ab
4 changed files with 9 additions and 7 deletions

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.drbeef.rtcwquest" package="com.drbeef.rtcwquest"
android:versionCode="13" android:versionCode="14"
android:versionName="0.13.0" android:installLocation="auto" > android:versionName="0.14.0" android:installLocation="auto" >
<!-- Tell the system this app requires OpenGL ES 3.1. --> <!-- Tell the system this app requires OpenGL ES 3.1. -->
<uses-feature android:glEsVersion="0x00030001" android:required="true"/> <uses-feature android:glEsVersion="0x00030001" android:required="true"/>

View file

@ -94,8 +94,10 @@ void P_DamageFeedback( gentity_t *player ) {
client->ps.damageCount = count; client->ps.damageCount = count;
trap_Vibrate(300, 1, (count / 255.0) + 0.5f); if (!client->ps.aiChar) {
trap_Vibrate(300, 0, (count / 255.0) + 0.5f); trap_Vibrate(1000, 1, (count / 255.0) + 0.5f);
trap_Vibrate(1000, 0, (count / 255.0) + 0.5f);
}
// //

View file

@ -42,7 +42,7 @@ If you have questions concerning this license or the applicable additional terms
// q_shared.h -- included first by ALL program modules. // q_shared.h -- included first by ALL program modules.
// A user mod should never modify this file // A user mod should never modify this file
#define Q3_VERSION "RTCWQuest 0.13.0 (Wolf 1.41)" #define Q3_VERSION "RTCWQuest 0.14.0 (Wolf 1.41)"
// ver 1.0.0 - release // ver 1.0.0 - release
// ver 1.0.1 - post-release work // ver 1.0.1 - post-release work
// ver 1.1.0 - patch 1 (12/12/01) // ver 1.1.0 - patch 1 (12/12/01)

View file

@ -37,8 +37,8 @@ If you have questions concerning this license or the applicable additional terms
#define MAX_NUM_ARGVS 50 #define MAX_NUM_ARGVS 50
#define MIN_DEDICATED_COMHUNKMEGS 1 #define MIN_DEDICATED_COMHUNKMEGS 1
#define MIN_COMHUNKMEGS 54 // RF, optimizing #define MIN_COMHUNKMEGS 64 // RF, optimizing
#define DEF_COMHUNKMEGS "72" #define DEF_COMHUNKMEGS "128"
#define DEF_COMZONEMEGS "30" #define DEF_COMZONEMEGS "30"
int com_argc; int com_argc;