mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 01:17:57 -05:00
Kernel: Remove g_program_id
This has been obsoleted by the field in Process.
This commit is contained in:
@ -19,7 +19,6 @@ namespace Kernel {
|
||||
unsigned int Object::next_object_id;
|
||||
SharedPtr<Thread> g_main_thread;
|
||||
HandleTable g_handle_table;
|
||||
u64 g_program_id;
|
||||
|
||||
void WaitObject::AddWaitingThread(SharedPtr<Thread> thread) {
|
||||
auto itr = std::find(waiting_threads.begin(), waiting_threads.end(), thread);
|
||||
@ -141,7 +140,6 @@ void Init() {
|
||||
Kernel::TimersInit();
|
||||
|
||||
Object::next_object_id = 0;
|
||||
g_program_id = 0;
|
||||
g_main_thread = nullptr;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user