mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-08-14 20:47:42 +00:00
Remove experimental support for Replaying C32 files (#1294)
This commit is contained in:
@@ -41,7 +41,6 @@ static const fs::path txt_ext{u".TXT"};
|
||||
static const fs::path ppl_ext{u".PPL"};
|
||||
static const fs::path c8_ext{u".C8"};
|
||||
static const fs::path c16_ext{u".C16"};
|
||||
static const fs::path c32_ext{u".C32"};
|
||||
static const fs::path cxx_ext{u".C*"};
|
||||
static const fs::path png_ext{u".PNG"};
|
||||
static const fs::path bmp_ext{u".BMP"};
|
||||
@@ -87,8 +86,6 @@ fs::path get_partner_file(fs::path path) {
|
||||
path.replace_extension(c8_ext);
|
||||
if (!fs::file_exists(path))
|
||||
path.replace_extension(c16_ext);
|
||||
if (!fs::file_exists(path))
|
||||
path.replace_extension(c32_ext);
|
||||
} else
|
||||
return {};
|
||||
|
||||
|
@@ -76,7 +76,6 @@ class FileManBaseView : public View {
|
||||
{u".BMP", &bitmap_icon_file_image, ui::Color::green()},
|
||||
{u".C8", &bitmap_icon_file_iq, ui::Color::dark_cyan()},
|
||||
{u".C16", &bitmap_icon_file_iq, ui::Color::dark_cyan()},
|
||||
{u".C32", &bitmap_icon_file_iq, ui::Color::dark_cyan()},
|
||||
{u".WAV", &bitmap_icon_file_wav, ui::Color::dark_magenta()},
|
||||
{u".PPL", &bitmap_icon_file_iq, ui::Color::white()}, // PPL is the file extension for playlist app
|
||||
{u"", &bitmap_icon_file, ui::Color::light_grey()} // NB: Must be last.
|
||||
|
Reference in New Issue
Block a user