1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Add space after function names

This commit is contained in:
Matthew D. Steele 2022-01-08 16:39:30 -05:00 committed by mrdudz
parent db02a89b5d
commit 815e30c47f

View File

@ -329,6 +329,6 @@ void ParaVirtHooks (CPURegs* Regs)
Hooks[Regs->PC - PARAVIRT_BASE] (Regs);
/* Simulate RTS */
lo = Pop(Regs);
Regs->PC = lo + (Pop(Regs) << 8) + 1;
lo = Pop (Regs);
Regs->PC = lo + (Pop (Regs) << 8) + 1;
}