aboutsummaryrefslogtreecommitdiff
path: root/src/utils.rs
diff options
context:
space:
mode:
authorMatthew Collins <[email protected]>2018-02-17 15:54:03 +0000
committerMatthew Collins <[email protected]>2018-02-17 15:54:03 +0000
commit06cc226be524fe7ea19db0b4426bfd0bed12e9fe (patch)
tree109f3c1c22205d99de3980afd724d41ba74a6a83 /src/utils.rs
parentUpdate deps (diff)
downloadarchived-steamworks-rs-06cc226be524fe7ea19db0b4426bfd0bed12e9fe.tar.xz
archived-steamworks-rs-06cc226be524fe7ea19db0b4426bfd0bed12e9fe.zip
Allow the use of the api across threads
Diffstat (limited to 'src/utils.rs')
-rw-r--r--src/utils.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.rs b/src/utils.rs
index 416b9ee..f95719f 100644
--- a/src/utils.rs
+++ b/src/utils.rs
@@ -3,7 +3,7 @@ use super::*;
pub struct Utils {
pub(crate) utils: *mut sys::ISteamUtils,
- pub(crate) _client: Rc<ClientInner>,
+ pub(crate) _client: Arc<ClientInner>,
}
impl Utils {