summaryrefslogtreecommitdiff
path: root/client/src/scene_prepare.rs
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/scene_prepare.rs')
-rw-r--r--client/src/scene_prepare.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/scene_prepare.rs b/client/src/scene_prepare.rs
index 36761a0..57d44b0 100644
--- a/client/src/scene_prepare.rs
+++ b/client/src/scene_prepare.rs
@@ -17,7 +17,7 @@
use crate::download::Downloader;
use anyhow::Result;
use image::ImageReader;
-use log::{debug, info};
+use log::debug;
use std::{
collections::{HashMap, HashSet},
hash::Hash,
@@ -193,7 +193,7 @@ impl ScenePreparer {
image.height(),
);
self.textures.insert(pres.clone(), tex_bg);
- info!(
+ debug!(
"texture created (res={}x{}, took {:?})",
dims.0,
dims.1,
@@ -202,7 +202,7 @@ impl ScenePreparer {
}
}
for variant in self.placeholder_textures.needed() {
- let v = if variant { 1 } else { 0 };
+ let v = if variant { 255 } else { 0 };
let tex_bg = create_texture(
&self.device,
&self.queue,