Anime: GU604 images correct

This commit is contained in:
Luke D. Jones
2023-06-16 10:37:27 +12:00
parent ea2d80cc44
commit e523e4e9a2
3 changed files with 215 additions and 13 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ pub const fn pkt_for_set_awake_enabled(enable: bool) -> [u8; PACKET_SIZE] {
pkt[0] = DEV_PAGE;
pkt[1] = 0xc3;
pkt[2] = 0x01;
pkt[3] = if enable { 0x80 } else { 0x00 };
pkt[3] = if !enable { 0x80 } else { 0x00 };
pkt
}