Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions include/nds.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
- \ref fifocommon.h "Fifo"
- \ref timers.h "Timers"

\section user_io_api User Input/ouput
\section user_io_api User Input/output
- \ref arm9/input.h "Keypad and Touch pad"
- \ref keyboard.h "Keyboard"
- \ref console.h "Console and Debug Printing"
Expand All @@ -79,7 +79,7 @@
- \ref decompress.h "Decompression"
- \ref image.h "Image Manipulation"
- \ref pcx.h "PCX file loader"
- \ref dynamicArray.h "General Purpose dynamic array implementation"
- \ref dynamicArray.h "General purpose dynamic array implementation"
- \ref linkedlist.h "General purpose linked list implementation"

\section peripheral_api Custom Peripherals
Expand All @@ -94,7 +94,7 @@



\section external_links Usefull links
\section external_links Useful links
- <a href="http://www.devkitpro.org/">devkitPro</a>
- <a href="https://github.com/devkitPro/">devkitPro github</a>

Expand Down
2 changes: 1 addition & 1 deletion include/nds/arm9/image.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ typedef struct sImage
{
short height; /*!< \brief The height of the image in pixels */
short width; /*!< \brief The width of the image in pixels */
int bpp; /*!< \brief Bits per pixel (should be 4 8 16 or 24) */
int bpp; /*!< \brief Bits per pixel (should be 4, 8, 16, or 24) */
unsigned short* palette; /*!< \brief A pointer to the palette data */

//! A union of data pointers to the pixel data.
Expand Down
Loading