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

@@ -50,7 +50,7 @@ pub struct Capturer {
rotated: Vec<u8>,
gdi_capturer: Option<CapturerGDI>,
gdi_buffer: Vec<u8>,
saved_raw_data: Vec<u128>, // for faster compare and copy
saved_raw_data: Vec<u8>, // for faster compare and copy
}
impl Capturer {