temp fixes and stability improvements

This commit is contained in:
Arneth
2022-01-21 19:15:14 -05:00
parent 07448bc23d
commit 87a0d0fe7a
71 changed files with 1212 additions and 75 deletions
@@ -194,7 +194,14 @@ namespace Qoo.Memory
// Token: 0x060005CF RID: 1487 RVA: 0x0001737C File Offset: 0x0001557C
internal void SetBool(bool IsString)
{
this.SetInt8((!IsString) ? 0 : 1);
//Unity didn't like the ternary operator
//this.SetInt8((!IsString) ? 0 : 1);
if(!IsString){
this.SetInt8(0);
}
else{
this.SetInt8(1);
}
}
// Token: 0x060005D0 RID: 1488 RVA: 0x00017394 File Offset: 0x00015594