Removed .jpeg as valid image format (to encourage consistency)

This commit is contained in:
Joshua Barretto 2021-06-18 12:42:08 +01:00
parent f6d64a424f
commit 747ef50a58

View File

@ -110,7 +110,7 @@ impl Loader<Image> for ImageLoader {
impl Asset for Image {
type Loader = ImageLoader;
const EXTENSIONS: &'static [&'static str] = &["png", "jpg", "jpeg"];
const EXTENSIONS: &'static [&'static str] = &["png", "jpg"];
}
pub struct DotVoxAsset(pub DotVoxData);