Fix for No and disabeling of callback support for now

This commit is contained in:
2024-05-31 22:48:06 +02:00
parent 477fbf59e7
commit 9fab686e1e
9 changed files with 18 additions and 24 deletions

View File

@@ -1,21 +0,0 @@
#pragma once
#include <PSX/System/threads.hpp>
namespace JabyEngine {
namespace Callback {
namespace internal {
namespace VSync {
static constexpr size_t StackSize = 64;
extern SysCall::ThreadHandle thread_handle;
extern uint32_t stack[StackSize];
void routine();
static void execute() {
MainThread::prepare_if_main(VSync::thread_handle);
Thread::execute_next();
}
}
}
}
}