We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0d0983 commit 472b232Copy full SHA for 472b232
src/engine/framework/VirtualMachine.cpp
@@ -515,7 +515,7 @@ void VMBase::Create()
515
std::string vmABI = reader.Read<std::string>();
516
if (vmABI != IPC::SYSCALL_ABI_VERSION) {
517
Sys::Drop("Couldn't load the %s gamelogic module: it uses ABI version %s but this Daemon engine uses %s",
518
- vmABI, IPC::SYSCALL_ABI_VERSION);
+ this->name, vmABI, IPC::SYSCALL_ABI_VERSION);
519
}
520
521
bool vmCompatBreaking = reader.Read<bool>();
0 commit comments