File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
crates/bevy_render/src/render_graph/nodes Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ impl Node for WindowSwapChainNode {
4949
5050 let window = windows
5151 . get ( self . window_id )
52- . expect ( "Received window resized event for non-existent window." ) ;
52+ . expect ( "Window swapchain node refers to a non-existent window." ) ;
5353
5454 let render_resource_context = render_context. resources_mut ( ) ;
5555
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ impl Node for WindowTextureNode {
5252
5353 let window = windows
5454 . get ( self . window_id )
55- . expect ( "Received window resized event for non-existent window." ) ;
55+ . expect ( "Window texture node refers to a non-existent window." ) ;
5656
5757 if self
5858 . window_created_event_reader
You can’t perform that action at this time.
0 commit comments