Minor comments
All checks were successful
CI / Formatting (push) Successful in 1m3s

This commit is contained in:
Michael Bradley 2025-05-17 19:16:52 -04:00
parent cab6c605ab
commit 763acd0ad8
Signed by: MichaelBradley
SSH key fingerprint: SHA256:BKO2eI2LPsCbQS3n3i5SdwZTAIV3F1lHezR07qP+Ob0
3 changed files with 3 additions and 1 deletions

View file

@ -1,3 +1,4 @@
[target.x86_64-unknown-linux-gnu]
linker = "clang"
# TODO: Share generics when using nightly no longer causes an undefined symbol error
rustflags = ["-C", "link-arg=-fuse-ld=/usr/bin/mold"] #, "-Zshare-generics=y"]

View file

@ -1,2 +1,3 @@
[toolchain]
# TODO: Switch back to nightly when it no longer causes an undefined symbol error
channel = "stable" # "nightly"

View file

@ -66,7 +66,7 @@ fn run_app(settings: AppSettings) -> AppExit {
..default()
}),
PhysicsPlugins::default().with_length_unit(50.0),
EntropyPlugin::<WyRand>::with_seed(seed.0.to_le_bytes()), // TODO: Tried to make and Into<[u8; 8]> for this but it wants to consume the value
EntropyPlugin::<WyRand>::with_seed(seed.0.to_le_bytes()), // TODO: Tried to make an Into<[u8; 8]> for this but it wants to consume the value
))
.add_systems(
Startup,