mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-05 12:29:16 +00:00
Fix type sizes
This commit is contained in:
@ -353,7 +353,7 @@ namespace std
|
||||
if (Pos >= this->Length)
|
||||
return;
|
||||
|
||||
if ((int64_t)Count < 0)
|
||||
if ((int64_t)Count <= 0)
|
||||
return;
|
||||
|
||||
if (Pos + Count > this->Length)
|
||||
@ -377,7 +377,7 @@ namespace std
|
||||
if (Pos >= this->Length)
|
||||
return;
|
||||
|
||||
if ((int64_t)Count < 0)
|
||||
if ((int64_t)Count <= 0)
|
||||
return;
|
||||
|
||||
if (Pos + Count > this->Length)
|
||||
|
Reference in New Issue
Block a user