diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:20 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:20 +0100 |
commit | 51168c753286eeee64410ab19dc9f78a4ea479e4 (patch) | |
tree | d384093c6fd11b36b189013b663f3500b18ec2a4 /stockton-levels/src/q3/light_maps.rs | |
parent | d076d3a6fd484e298915cd85609ba9706abacc87 (diff) |
refactor(all): use new traits-based levels everywhere else.
unfortunately this also starts using an unstable feature - generic_associated_types
see rust-lang/rust#44265
Diffstat (limited to 'stockton-levels/src/q3/light_maps.rs')
-rw-r--r-- | stockton-levels/src/q3/light_maps.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stockton-levels/src/q3/light_maps.rs b/stockton-levels/src/q3/light_maps.rs index 6743aa4..a03f164 100644 --- a/stockton-levels/src/q3/light_maps.rs +++ b/stockton-levels/src/q3/light_maps.rs @@ -46,14 +46,14 @@ pub fn from_data(data: &[u8]) -> Result<Box<[LightMap]>> { Ok(maps.into_boxed_slice()) } -impl<'a> HasLightMaps<'a> for Q3BSPFile { - type LightMapsIter = std::slice::Iter<'a, LightMap>; +impl HasLightMaps for Q3BSPFile { + type LightMapsIter<'a> = std::slice::Iter<'a, LightMap>; - fn lightmaps_iter(&'a self) -> Self::LightMapsIter { + fn lightmaps_iter<'a>(&'a self) -> Self::LightMapsIter<'a> { self.light_maps.iter() } - fn get_lightmap(&'a self, index: u32) -> &'a LightMap { + fn get_lightmap<'a>(&'a self, index: u32) -> &'a LightMap { &self.light_maps[index as usize] } }
\ No newline at end of file |