Skip to content

Commit

Permalink
Don't have DEFAULT_MAX_DELTA public
Browse files Browse the repository at this point in the history
  • Loading branch information
nakedible committed Jun 30, 2023
1 parent 9cbd770 commit 3b04c8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_time/src/virt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl Time<Virtual> {
/// The default amount of time that can added in a single update.
///
/// Equal to 0.25 seconds.
pub const DEFAULT_MAX_DELTA: Duration = Duration::from_millis(250);
const DEFAULT_MAX_DELTA: Duration = Duration::from_millis(250);

/// Create new virtual clock with given maximum delta step
/// [`Duration`](std::time::Duration)
Expand Down

0 comments on commit 3b04c8b

Please sign in to comment.