diff options
Diffstat (limited to 'engine/src')
| -rw-r--r-- | engine/src/windowing.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/src/windowing.rs b/engine/src/windowing.rs index b59075e..7038e06 100644 --- a/engine/src/windowing.rs +++ b/engine/src/windowing.rs @@ -26,7 +26,7 @@ use crate::ecs::component::Component; use crate::ecs::entity::obtainer::Obtainer as EntityObtainer; use crate::ecs::event::component::{Added, Changed, EventMatchExt, Removed}; use crate::ecs::pair::{ChildOf, Pair}; -use crate::ecs::phase::{Phase, UPDATE as UPDATE_PHASE}; +use crate::ecs::phase::{Phase, PRE_UPDATE as PRE_UPDATE_PHASE}; use crate::ecs::sole::Single; use crate::ecs::system::observer::Observe; use crate::ecs::uid::Uid; @@ -68,7 +68,7 @@ const TEXT_KEY_QUEUE_SIZE: usize = 255; static CONTEXT_CREATED: AtomicBool = AtomicBool::new(false); declare_entity! { -pub PHASE: (Phase, pair!(ChildOf, { *UPDATE_PHASE })); +pub PHASE: (Phase, pair!(ChildOf, { *PRE_UPDATE_PHASE })); } #[derive(Debug, Default)] |
