ArduboyFX: fix return type of readIndexedUInt8

Set the return type to uint8_t so the type matches the definition.
This commit is contained in:
Michael Gollnick 2022-02-10 11:18:35 +01:00
parent f70778f120
commit fcf672bb4e
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ class FX
static void readDataArray(uint24_t address, uint8_t index, uint8_t offset, uint8_t elementSize, uint8_t* buffer, size_t length); static void readDataArray(uint24_t address, uint8_t index, uint8_t offset, uint8_t elementSize, uint8_t* buffer, size_t length);
static uint16_t readIndexedUInt8(uint24_t address, uint8_t index); static uint8_t readIndexedUInt8(uint24_t address, uint8_t index);
static uint16_t readIndexedUInt16(uint24_t address, uint8_t index); static uint16_t readIndexedUInt16(uint24_t address, uint8_t index);