diff --git a/.gitignore b/.gitignore index 4fffb2f..9a74c2a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /target /Cargo.lock +/meow \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index 340d8fe..2411eb5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,6 +3,8 @@ //! # Game Skunk Advance //! Game development library modelled after an imaginary console //! +//! [Changelog](https://git.danitheskunk.com/DaniTheSkunk/gsa/src/branch/master/CHANGLOG.md) +//! //! ## Specs //! - Resolution: 304x176 (19x11 tiles) //! - Colors: 256 (indexed out of a possible 24-bit) @@ -57,7 +59,7 @@ pub const SCREEN_HEIGHT: usize = 176; pub const BACKGROUND_MAX_SIZE: usize = 1024; /// Tile considered empty (never drawn even if has contents) -pub const EMPTY_TILE: u16 = 0xffff +pub const EMPTY_TILE: u16 = 0xffff; /// Tile id of bold default font pub const FONT_BOLD: u16 = 0xf000;