[Patcher] Plugin Loader

Added a plugin loader which can be enabled with allow_plugins in the config.
This commit is contained in:
Adrian
2023-07-16 18:25:50 +01:00
committed by Radosław Gliński
parent 6e86eacf5a
commit 91f976e524
8 changed files with 355 additions and 11 deletions

View File

@@ -117,7 +117,7 @@ bool XThread::IsInThread(XThread* other) {
XThread* XThread::GetCurrentThread() {
XThread* thread = reinterpret_cast<XThread*>(current_xthread_tls_);
if (!thread) {
assert_always("Attempting to use kernel stuff from a non-kernel thread");
assert_always("Attempting to use guest stuff from a non-guest thread.");
}
return thread;
}