mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-18 18:05:21 +00:00
Fix align_target with a padding of 0 bytes
This commit is contained in:
parent
bd29aa7a27
commit
a8e76deb69
@ -4972,6 +4972,9 @@ void freescratch(void)
|
||||
|
||||
static void align_target(uae_u32 a)
|
||||
{
|
||||
if (!a)
|
||||
return;
|
||||
|
||||
if (tune_nop_fillers)
|
||||
raw_emit_nop_filler(a - (((uae_u32)target) & (a - 1)));
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user