diff --git a/television/utils/image.rs b/television/utils/image.rs index 2788c4f..9a9e7b1 100644 --- a/television/utils/image.rs +++ b/television/utils/image.rs @@ -12,8 +12,8 @@ const PIXEL: char = '▀'; const FILTER_TYPE: FilterType = FilterType::Lanczos3; // use to reduce the size of the image before storing it -const CACHED_WIDTH: u32 = 256; -const CACHED_HEIGHT: u32 = 256; +const CACHED_WIDTH: u32 = 128; +const CACHED_HEIGHT: u32 = 128; const GRAY: Rgba = Rgba([242, 242, 242, 255]); const WHITE: Rgba = Rgba([255, 255, 255, 255]);