Remove experimental support for Replaying C32 files (#1294)

This commit is contained in:
Mark Thompson 2023-07-23 01:52:23 -05:00 committed by GitHub
parent c4df2e66be
commit 828eb67a52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 2 additions and 32 deletions

View file

@ -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 {};