Update dependencies and rust version

This commit is contained in:
2025-03-04 20:46:16 -05:00
parent fddc7bdd0e
commit 9a34856c2b
25 changed files with 510 additions and 488 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ impl CellData {
}
pub fn update(&self, source: &mut u16) -> bool {
let new_value = (self.palette_index as u16) << 14
let new_value = ((self.palette_index as u16) << 14)
| if self.hflip { 0x2000 } else { 0x0000 }
| if self.vflip { 0x1000 } else { 0x0000 }
| (self.char_index as u16 & 0x07ff)