mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Fix a typo that leads to a crash
Oddly nough the crash appear only under Windows, not under Linux.
This commit is contained in:
parent
c2d9cdcaff
commit
e16d269622
1 changed files with 1 additions and 1 deletions
|
@ -1081,7 +1081,7 @@ void do_init(Entry& e, T& p, uint8_t* data)
|
||||||
|
|
||||||
for (File f = FILE_A; f <= maxFile; ++f)
|
for (File f = FILE_A; f <= maxFile; ++f)
|
||||||
for (int k = 0; k <= split; k++)
|
for (int k = 0; k <= split; k++)
|
||||||
data = set_sizes(item(p, k, f).precomp, data, tb_size[2 * f + k]);
|
data = set_sizes(item(p, k, f).precomp, data, tb_size[K * f + k]);
|
||||||
|
|
||||||
if (IsDTZ)
|
if (IsDTZ)
|
||||||
data = set_dtz_map(e, p, data, maxFile);
|
data = set_dtz_map(e, p, data, maxFile);
|
||||||
|
|
Loading…
Add table
Reference in a new issue