aboutsummaryrefslogtreecommitdiff
path: root/src/app.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/app.rs
parentUpdate deps (diff)
downloadsteamworks-rs-06cc226be524fe7ea19db0b4426bfd0bed12e9fe.tar.xz
steamworks-rs-06cc226be524fe7ea19db0b4426bfd0bed12e9fe.zip
Allow the use of the api across threads
Diffstat (limited to 'src/app.rs')
-rw-r--r--src/app.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.rs b/src/app.rs
index 2ba0b44..169bbed 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -5,7 +5,7 @@ pub struct AppId(pub u32);
pub struct Apps {
pub(crate) apps: *mut sys::ISteamApps,
- pub(crate) _client: Rc<ClientInner>,
+ pub(crate) _client: Arc<ClientInner>,
}
impl Apps {