mirror of
https://github.com/doukutsu-rs/doukutsu-rs
synced 2025-01-15 15:26:50 +00:00
Minor missing texture rewording (#190)
* Minor missing texture rewording * ababa --------- Co-authored-by: Daedliy <missari.bb@gmail.com>
This commit is contained in:
parent
515a0a7fe7
commit
6d3c127912
|
@ -528,7 +528,7 @@ impl TextureSet {
|
|||
) -> GameResult<Box<dyn SpriteBatch>> {
|
||||
let path = self
|
||||
.find_texture(ctx, &constants.base_paths, name)
|
||||
.ok_or_else(|| GameError::ResourceLoadError(format!("Texture {} does not exist.", name)))?;
|
||||
.ok_or_else(|| GameError::ResourceLoadError(format!("Texture \"{}\" is missing.", name)))?;
|
||||
|
||||
let glow_path = self.find_texture(ctx, &constants.base_paths, &[name, ".glow"].join(""));
|
||||
|
||||
|
|
Loading…
Reference in a new issue