chore(release): v0.1.34

This commit is contained in:
LGUG2Z
2025-02-18 18:54:33 -08:00
parent 36dedbe3fe
commit 80edcadbf7
9 changed files with 71 additions and 65 deletions
+2 -2
View File
@@ -120,8 +120,8 @@ impl From<u32> for Rgb {
fn from(value: u32) -> Self {
Self {
r: value & 0xff,
g: value >> 8 & 0xff,
b: value >> 16 & 0xff,
g: (value >> 8) & 0xff,
b: (value >> 16) & 0xff,
}
}
}