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/utils.rs | |
| parent | Update deps (diff) | |
| download | archived-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.rs | 2 |
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 { |