Fix signature of GIFOpenFile
This commit is contained in:
parent
902c16f491
commit
c1d99cf422
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ int16_t xPos = 0, yPos = 0; // Top-left pixel coord of GIF in matrix space
|
||||||
// FILE ACCESS FUNCTIONS REQUIRED BY ANIMATED GIF LIB ----------------------
|
// FILE ACCESS FUNCTIONS REQUIRED BY ANIMATED GIF LIB ----------------------
|
||||||
|
|
||||||
// Pass in ABSOLUTE PATH of GIF file to open
|
// Pass in ABSOLUTE PATH of GIF file to open
|
||||||
void *GIFOpenFile(char *filename, int32_t *pSize) {
|
void *GIFOpenFile(const char *filename, int32_t *pSize) {
|
||||||
GIFfile = filesys.open(filename);
|
GIFfile = filesys.open(filename);
|
||||||
if (GIFfile) {
|
if (GIFfile) {
|
||||||
*pSize = GIFfile.size();
|
*pSize = GIFfile.size();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue