mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 02:15:45 +00:00
Manually tweak source formatting and then re-run clang-format
This commit is contained in:
parent
5288648a23
commit
1e4a5da9f4
169 changed files with 805 additions and 809 deletions
|
@ -80,9 +80,8 @@ void RunInterpreter(const ShaderSetup& setup, UnitState<Debug>& state, unsigned
|
|||
auto call = [&program_counter, &call_stack](UnitState<Debug>& state, u32 offset,
|
||||
u32 num_instructions, u32 return_offset,
|
||||
u8 repeat_count, u8 loop_increment) {
|
||||
program_counter =
|
||||
offset -
|
||||
1; // -1 to make sure when incrementing the PC we end up at the correct offset
|
||||
// -1 to make sure when incrementing the PC we end up at the correct offset
|
||||
program_counter = offset - 1;
|
||||
ASSERT(call_stack.size() < call_stack.capacity());
|
||||
call_stack.push_back(
|
||||
{offset + num_instructions, return_offset, repeat_count, loop_increment, offset});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue