Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for non-browser wasm #17499

Merged
merged 11 commits into from
Mar 7, 2025
Prev Previous commit
Next Next commit
Remove redundant feature gate
bushrat011899 committed Jan 22, 2025
commit 57636027974b0071df2e826ffa5b54e04fcd5326
1 change: 0 additions & 1 deletion crates/bevy_app/src/task_pool_plugin.rs
Original file line number Diff line number Diff line change
@@ -22,7 +22,6 @@ cfg_if::cfg_if! {
///
/// Calls [`tick_global_task_pools_on_main_thread`],
/// and uses [`NonSendMarker`] to ensure that this system runs on the main thread
#[cfg(not(target_arch = "wasm32"))]
fn tick_global_task_pools(_main_thread_marker: Option<NonSend<NonSendMarker>>) {
tick_global_task_pools_on_main_thread();
}