mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2025-02-17 05:18:27 +00:00
...
This commit is contained in:
parent
cec406fc0a
commit
d6ca3a5331
1 changed files with 2 additions and 2 deletions
|
@ -353,12 +353,12 @@ namespace SanAndreasUnity.UI
|
|||
|
||||
void TrimExcessLogs()
|
||||
{
|
||||
if (!restrictLogCount)
|
||||
if (!this.restrictLogCount)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var amountToRemove = m_logs.Count - maxLogCount;
|
||||
int amountToRemove = m_logs.Count - this.maxLogCount;
|
||||
|
||||
if (amountToRemove <= 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue