mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Fix arithmetic overflow error
This commit is contained in:
parent
63792924e0
commit
44aa69fc1e
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ namespace System
|
|||
if (++locINext >= 56) locINext = 1;
|
||||
if (++locINextp >= 56) locINextp = 1;
|
||||
|
||||
retVal = SeedArray[locINext] - SeedArray[locINextp];
|
||||
retVal = SeedArray[locINext] &- SeedArray[locINextp];
|
||||
SeedArray[locINext] = retVal;
|
||||
|
||||
inext = locINext;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue