vm.cpp: remove unused variable

This commit is contained in:
Megamouse 2025-10-10 10:31:10 +02:00
parent 44e875618f
commit 13bb9a2041

View file

@ -98,7 +98,6 @@ namespace vm
void reservation_update(u32 addr)
{
u64 old = -1;
const auto cpu = get_current_cpu_thread();
const bool had_wait = cpu && cpu->state & cpu_flag::wait;
@ -126,8 +125,6 @@ namespace vm
return;
}
old = rtime;
}
}