From 79e53e094f8f3dfaac125221e2a4d9c4930705ee Mon Sep 17 00:00:00 2001 From: dani Date: Thu, 27 Jul 2023 04:07:54 +0000 Subject: [PATCH] gitignore and changelog link --- .gitignore | 1 + src/lib.rs | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) 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;