Skip to content

Commit

Permalink
Temporarily disable System class init (so CI passes)
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandezseb committed Mar 7, 2024
1 parent 2ae763c commit a703488
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/VM/VM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ void VM::start(std::string_view commandLineName)
const u4 threadGroupReference = createThreadGroupObject(&m_mainThread);
m_mainThread.threadObject = createThreadObject(&m_mainThread, threadGroupReference);

initSystemClass(systemClass, &m_mainThread);
// TODO: Enable when fixed
// initSystemClass(systemClass, &m_mainThread);
}

u4 VM::createThreadGroupObject(VMThread* thread)
Expand Down

0 comments on commit a703488

Please sign in to comment.