Ignore generated filelist.h file

This commit is contained in:
Maschell 2020-02-19 20:39:03 +01:00
parent 3d2ef7aa6a
commit b1797266c9
2 changed files with 1 additions and 34 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
*.elf
*.rpx
build/
src/resources/filelist.h

View File

@ -1,34 +0,0 @@
/****************************************************************************
* Loadiine resource files.
* This file is generated automatically.
* Includes 2 files.
*
* NOTE:
* Any manual modification of this file will be overwriten by the generation.
****************************************************************************/
#ifndef _FILELIST_H_
#define _FILELIST_H_
typedef struct _RecourceFile
{
const char *filename;
const unsigned char *DefaultFile;
const unsigned int &DefaultFileSize;
unsigned char *CustomFile;
unsigned int CustomFileSize;
} RecourceFile;
extern const unsigned char bgMusic_ogg[];
extern const unsigned int bgMusic_ogg_size;
extern const unsigned char font_ttf[];
extern const unsigned int font_ttf_size;
static RecourceFile RecourceList[] =
{
{"bgMusic.ogg", bgMusic_ogg, bgMusic_ogg_size, NULL, 0},
{"font.ttf", font_ttf, font_ttf_size, NULL, 0},
{NULL, NULL, 0, NULL, 0}
};
#endif