# HG changeset patch
# User sheepluva
# Date 1624392835 -7200
# Node ID d5c37e78ab83ce00cb93dc0e745a6aa0ff0f533e
# Parent  f57a3d48072ba60fcebf84e81a8783f4709d8b90
hedgewars-engine (rust): fix "protocol_version" -> "hedgewars_engine_protocol_version"
That function/symbol was renamed in ef2fc0210362

diff -r f57a3d48072b -r d5c37e78ab83 rust/hedgewars-engine/src/main.rs
--- a/rust/hedgewars-engine/src/main.rs	Tue Jun 22 01:57:50 2021 +0300
+++ b/rust/hedgewars-engine/src/main.rs	Tue Jun 22 22:13:55 2021 +0200
@@ -16,7 +16,7 @@
 
     unsafe {
         let engine = Engine {
-            protocol_version: hwlib.get(b"protocol_version").unwrap(),
+            protocol_version: hwlib.get(b"hedgewars_engine_protocol_version").unwrap(),
             start_engine: hwlib.get(b"start_engine").unwrap(),
             cleanup: hwlib.get(b"cleanup").unwrap(),
         };