[Kernel] Fixed issue with titles not booting due to lack of title id

This commit is contained in:
Gliniak
2026-06-03 22:39:53 +02:00
parent be6e53e383
commit 9478cda5d6
3 changed files with 4 additions and 1 deletions

View File

@@ -138,7 +138,7 @@ X_STATUS GraphicsSystem::Setup(cpu::Processor* processor,
while (frame_limiter_worker_running_) {
// If there is no title running then there is no need for guest
// frame limiter thread.
if (!kernel_state_->title_id()) {
if (!kernel_state_->is_title_open()) {
xe::threading::Sleep(std::chrono::milliseconds(100));
continue;
}