use usize max as the default font handle (to ensure it always stays invalid)

This commit is contained in:
griffi-gh 2024-02-21 11:20:45 +01:00
parent ff5658f44a
commit 3bcbe0ae6e

View file

@ -6,10 +6,9 @@ pub struct FontHandle(pub(crate) usize);
#[cfg(feature = "builtin_font")]
pub const BUILTIN_FONT: FontHandle = FontHandle(0);
pub(crate) const DEFAULT_FONT: FontHandle = {
#[cfg(feature = "builtin_font")] { BUILTIN_FONT }
#[cfg(not(feature = "builtin_font"))] { FontHandle(0) }
#[cfg(not(feature = "builtin_font"))] { FontHandle(usize::MAX) }
};
#[cfg(feature = "builtin_font")]