remove u128 compare

This commit is contained in:
rustdesk
2022-12-26 17:44:29 +08:00
parent 633253647f
commit 0d0957cea5
6 changed files with 7 additions and 7 deletions

View File

@@ -14,7 +14,7 @@ pub struct Capturer {
size: usize,
use_yuv: bool,
yuv: Vec<u8>,
saved_raw_data: Vec<u128>, // for faster compare and copy
saved_raw_data: Vec<u8>, // for faster compare and copy
}
impl Capturer {