Skip to content

Commit 17fec57

Browse files
committed
Make Time fields public.
1 parent 10e6ce2 commit 17fec57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ pub struct ApiByteSlice<'a> {
9595
#[derive(Debug, Clone)]
9696
pub struct Time {
9797
/// Seconds since 2000-01-01T00:00:00Z
98-
seconds_since_epoch: u32,
98+
pub seconds_since_epoch: u32,
9999
/// Number of 60 Hz frames that have elapsed since the current second
100100
/// began [0..59].
101-
frames_since_second: u8,
101+
pub frames_since_second: u8,
102102
}
103103

104104
/// The BIOS API.

0 commit comments

Comments
 (0)