diff options
| author | William Venner <[email protected]> | 2021-04-04 01:30:42 +0100 |
|---|---|---|
| committer | William Venner <[email protected]> | 2021-04-04 01:30:42 +0100 |
| commit | 371d555d2866faa413a765110950cc6f264d6c81 (patch) | |
| tree | 00fb56db3f3fee433ba79b0fceb6fed8c9c8be54 | |
| parent | Export sys::kNumUGCResultsPerPage (diff) | |
| download | steamworks-rs-371d555d2866faa413a765110950cc6f264d6c81.tar.xz steamworks-rs-371d555d2866faa413a765110950cc6f264d6c81.zip | |
kNumUGCResultsPerPage -> RESULTS_PER_PAGE
| -rw-r--r-- | src/ugc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ use std::mem; use std::path::Path; use std::os::raw::c_char; -pub use sys::kNumUGCResultsPerPage as kNumUGCResultsPerPage; +pub const RESULTS_PER_PAGE: u32 = sys::kNumUGCResultsPerPage as u32; pub struct UGC<Manager> { pub(crate) ugc: *mut sys::ISteamUGC, |