18 lines
536 B
C
18 lines
536 B
C
|
|
#ifndef __LOCAL_SONG_NAMES_H
|
||
|
|
#define __LOCAL_SONG_NAMES_H
|
||
|
|
|
||
|
|
/* Auto-generated by tools/gen_local_song_names.py from local_songs.csv — do not hand-edit. */
|
||
|
|
/* Display names are GBK for LCD_ShowMixedString; codes match 2.bin preset ASCII (e.g. HKTK). */
|
||
|
|
|
||
|
|
#define LOCAL_SONG_COUNT 1
|
||
|
|
|
||
|
|
static const char * const LocalSongNameGbk[LOCAL_SONG_COUNT] = {
|
||
|
|
"\xBA\xA3\xC0\xAB\xCC\xEC\xBF\xD5", /* 0: 海阔天空 */
|
||
|
|
};
|
||
|
|
|
||
|
|
static const char * const LocalSongCode[LOCAL_SONG_COUNT] = {
|
||
|
|
"HKTK", /* 0 */
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif /* __LOCAL_SONG_NAMES_H */
|