We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b435e9 commit 7aa6bd2Copy full SHA for 7aa6bd2
src/engine/script.cpp
@@ -28,6 +28,7 @@ void Script::setBytecode(const std::vector<unsigned int> &code)
28
std::shared_ptr<VirtualMachine> Script::start()
29
{
30
auto vm = std::make_shared<VirtualMachine>(m_target, m_engine, this);
31
+ vm->setBytecode(m_bytecode);
32
vm->setProcedures(m_procedures);
33
vm->setFunctions(m_functions);
34
vm->setConstValues(m_constValues);
0 commit comments