Skip to content

Commit 472b232

Browse files
committed
Fix incompatible VM ABI error message
The "cgame"/"sgame" string to substitute was missing.
1 parent a0d0983 commit 472b232

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/engine/framework/VirtualMachine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ void VMBase::Create()
515515
std::string vmABI = reader.Read<std::string>();
516516
if (vmABI != IPC::SYSCALL_ABI_VERSION) {
517517
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);
518+
this->name, vmABI, IPC::SYSCALL_ABI_VERSION);
519519
}
520520

521521
bool vmCompatBreaking = reader.Read<bool>();

0 commit comments

Comments
 (0)