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 {
49
49
50
50
let window = windows
51
51
. 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." ) ;
53
53
54
54
let render_resource_context = render_context. resources_mut ( ) ;
55
55
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ impl Node for WindowTextureNode {
52
52
53
53
let window = windows
54
54
. 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." ) ;
56
56
57
57
if self
58
58
. window_created_event_reader
You can’t perform that action at this time.
0 commit comments