temp fixes and stability improvements
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user