Minor missing texture rewording (#190)

* Minor missing texture rewording

* ababa

---------

Co-authored-by: Daedliy <missari.bb@gmail.com>
This commit is contained in:
Daedliy 2023-01-29 14:40:42 -03:00 committed by GitHub
parent 515a0a7fe7
commit 6d3c127912
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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(""));