diff options
| author | Matthew Collins <[email protected]> | 2018-02-17 15:54:03 +0000 |
|---|---|---|
| committer | Matthew Collins <[email protected]> | 2018-02-17 15:54:03 +0000 |
| commit | 06cc226be524fe7ea19db0b4426bfd0bed12e9fe (patch) | |
| tree | 109f3c1c22205d99de3980afd724d41ba74a6a83 /src/app.rs | |
| parent | Update deps (diff) | |
| download | steamworks-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.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |