diff options
| author | Flaise <[email protected]> | 2019-08-02 16:06:04 -0500 |
|---|---|---|
| committer | Matthew Collins <[email protected]> | 2019-08-03 09:08:03 +0100 |
| commit | f36084df856b0fc3933afe3a9f376c9ccc11a98c (patch) | |
| tree | 25994cdb5a83e7e120b7e10daf11dbc2f17a1888 /src/server.rs | |
| parent | Fixed build script on Linux (diff) | |
| download | steamworks-rs-f36084df856b0fc3933afe3a9f376c9ccc11a98c.tar.xz steamworks-rs-f36084df856b0fc3933afe3a9f376c9ccc11a98c.zip | |
Implemented Serialize, Deserialize and other common traits where appropriate
Diffstat (limited to 'src/server.rs')
| -rw-r--r-- | src/server.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.rs b/src/server.rs index 122fd53..3d957ee 100644 --- a/src/server.rs +++ b/src/server.rs @@ -71,7 +71,7 @@ impl Server { raw_ip, steam_port, game_port, query_port, server_mode, - version.as_ptr() as *const _, + version.as_ptr(), ) == 0 { return Err(SteamError::InitFailed); } |