diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:23 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:23 +0100 |
commit | 399ae8ba45f40a54ec68026f77ca3c7c709ab62f (patch) | |
tree | 0ca721f8baf1cdf612c27822cd106343cad26155 /stockton-render/src/draw/texture/repo.rs | |
parent | d7d0f0277c437004ed476393542da39c84c5cf9f (diff) |
refactor(render): move functions from load into loader
Diffstat (limited to 'stockton-render/src/draw/texture/repo.rs')
-rw-r--r-- | stockton-render/src/draw/texture/repo.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stockton-render/src/draw/texture/repo.rs b/stockton-render/src/draw/texture/repo.rs index c37da11..75cc650 100644 --- a/stockton-render/src/draw/texture/repo.rs +++ b/stockton-render/src/draw/texture/repo.rs @@ -116,7 +116,7 @@ impl<'a> TextureRepo<'a> { resolver, )?; - std::thread::spawn(move || loader.loop_forever()) + std::thread::spawn(move || loader.loop_until_exit()) }; Ok(TextureRepo { |