Skip to content

Commit bedf615

Browse files
authored
Improve docs (#53)
1 parent 33b5e1e commit bedf615

File tree

3 files changed

+124
-124
lines changed

3 files changed

+124
-124
lines changed

include/nds.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
- \ref fifocommon.h "Fifo"
7171
- \ref timers.h "Timers"
7272
73-
\section user_io_api User Input/ouput
73+
\section user_io_api User Input/output
7474
- \ref arm9/input.h "Keypad and Touch pad"
7575
- \ref keyboard.h "Keyboard"
7676
- \ref console.h "Console and Debug Printing"
@@ -79,7 +79,7 @@
7979
- \ref decompress.h "Decompression"
8080
- \ref image.h "Image Manipulation"
8181
- \ref pcx.h "PCX file loader"
82-
- \ref dynamicArray.h "General Purpose dynamic array implementation"
82+
- \ref dynamicArray.h "General purpose dynamic array implementation"
8383
- \ref linkedlist.h "General purpose linked list implementation"
8484
8585
\section peripheral_api Custom Peripherals
@@ -93,7 +93,7 @@
9393
9494
9595
96-
\section external_links Usefull links
96+
\section external_links Useful links
9797
- <a href="http://www.devkitpro.org/">devkitPro</a>
9898
- <a href="https://github.com/devkitPro/">devkitPro github</a>
9999

include/nds/arm9/image.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ typedef struct sImage
5353
{
5454
short height; /*!< \brief The height of the image in pixels */
5555
short width; /*!< \brief The width of the image in pixels */
56-
int bpp; /*!< \brief Bits per pixel (should be 4 8 16 or 24) */
56+
int bpp; /*!< \brief Bits per pixel (should be 4, 8, 16, or 24) */
5757
unsigned short* palette; /*!< \brief A pointer to the palette data */
5858

5959
//! A union of data pointers to the pixel data.

0 commit comments

Comments
 (0)