From 9abfa7f8e1ca42066bb31bc93c65c459395fe926 Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Tue, 29 Aug 2023 16:20:54 +0100 Subject: [PATCH] Update documentation --- agb/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agb/src/lib.rs b/agb/src/lib.rs index c4e57618..cd4762f6 100644 --- a/agb/src/lib.rs +++ b/agb/src/lib.rs @@ -33,7 +33,7 @@ //! //! To get started with agb, you should clone the [template repo](https://github.com/agbrs/template) and work from there. -/// This macro is used to convert a png or bmp into a format usable by the Game Boy Advance. +/// This macro is used to convert a png, bmp or aseprite file into a format usable by the Game Boy Advance. /// /// Suppose you have a file in `examples/water_tiles.png` which contains some tiles you'd like to use. /// @@ -89,7 +89,7 @@ /// &mut vram, /// (x, y).into(), /// &tileset, -/// TileSetting::new(0, false, false, 0), +/// water_tiles::tiles.tile_settings[0], /// ); /// } /// }