mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-06-07 18:03:45 -04:00
go eat shit fucking global memory
This commit is contained in:
parent
36010d2538
commit
7b6eb6fb7a
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ void ResultEmplaceBack(EncodingData val) {
|
|||
// A = result_index, B = result_vector_max_index
|
||||
// A >= B -> A - B >= 0
|
||||
// A < B -> A - B < 0
|
||||
result_vector[min(32U, result_index)] = val.data; // 0 if not set
|
||||
result_vector[min(result_vector.length(), result_index)] = val.data; // 0 if not set
|
||||
++result_index;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue