-
|
I'm having trouble running my game after integrating the SteamSDK. I'm using From Steam it closes immediately. On Linux nothing happens on double-click with a similar setup, just with the I can run it from the terminal via cargo no problem. This is the output of This is the ouput of What else is needed for the linking to happen? Any help is appreciated. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
That error usually means the process is loading a Steam API DLL that does not contain the interface version requested by the Rust binding, rather than a Bevy-specific problem. Check these first: A quick way to catch this is to search the whole project/build tree for duplicate After the DLL loads correctly, keep |
Beta Was this translation helpful? Give feedback.
That error usually means the process is loading a Steam API DLL that does not contain the interface version requested by the Rust binding, rather than a Bevy-specific problem.
Check these first:
A quick way to catch this is to search the whole project/build tree for duplicate
steam_api64.dll, delete stale copies, then copy the redistributable DLL next to the final…