数值小调整,不影响

This commit is contained in:
anod 2023-03-09 20:45:06 +08:00
parent 72660578e3
commit 93fce2dab6

View File

@ -352,7 +352,7 @@ static CodeLocation rom_fit_newsize( CodeLocation rom, int realend, int totalsiz
else if( nextPow2(size) != nextPow2(szrom) )
{
// 似乎没什么要动的
*newsize = size + 1; // reserve a word for padding
*newsize = size + INSTR_SIZE; // reserve a word for padding
return rom + INSTR_LEN( realend );
}