diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:23 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:23 +0100 |
commit | 04f17923d38171f07f72603a54237f20ca3572dd (patch) | |
tree | f3807cadd88e088516d8267ec1d8ad5dd8779ae7 /stockton-render | |
parent | 68a1447d5173115bda56b866130e49cf42003c4f (diff) |
fix(tex): change missing texture to purple
Diffstat (limited to 'stockton-render')
-rw-r--r-- | stockton-render/src/draw/texture/loader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stockton-render/src/draw/texture/loader.rs b/stockton-render/src/draw/texture/loader.rs index df82607..ebb2bcc 100644 --- a/stockton-render/src/draw/texture/loader.rs +++ b/stockton-render/src/draw/texture/loader.rs @@ -541,7 +541,7 @@ impl<R: TextureResolver> TextureLoader<R> { obcpa: u64, config: &TextureLoadConfig<R>, ) -> Result<LoadedImage<DynamicBlock>> { - let img_data = RgbaImage::from_pixel(1, 1, Rgba([0, 0, 0, 0])); + let img_data = RgbaImage::from_pixel(1, 1, Rgba([255, 0, 255, 255])); let height = img_data.height(); let width = img_data.width(); |