mirror of
https://github.com/joel16/ElevenMPV.git
synced 2024-11-23 11:39:43 +00:00
576d84766e
- Settings to toggle metadata for FLAC/MP3 (sometimes loading the cover images can take a while - which is the reason for introducing this feature). - Sort alphabetically in ascending/descending order and by smallest/largest file size. - Also display the back button as long as the CWD is not the root path
15 lines
707 B
C
15 lines
707 B
C
#ifndef _ELEVENMPV_TEXTURES_H_
|
|
#define _ELEVENMPV_TEXTURES_H_
|
|
|
|
#include <vita2d.h>
|
|
|
|
vita2d_texture *icon_dir, *icon_file, *icon_audio, *battery_20, *battery_20_charging, *battery_30, *battery_30_charging, *battery_50, *battery_50_charging, \
|
|
*battery_60, *battery_60_charging, *battery_80, *battery_80_charging, *battery_90, *battery_90_charging, *battery_full, *battery_full_charging, \
|
|
*battery_low, *battery_unknown, *default_artwork, *default_artwork_blur, *btn_play, *btn_pause, *btn_rewind, *btn_forward, *btn_repeat, \
|
|
*btn_shuffle, *btn_repeat_overlay, *btn_shuffle_overlay, *icon_back, *toggle_on, *toggle_off, *radio_on, *radio_off;
|
|
|
|
void Textures_Load(void);
|
|
void Textures_Free(void);
|
|
|
|
#endif
|