1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-06 10:38:16 +00:00

Resolve name confusion.

This commit is contained in:
Thomas Harte 2021-06-06 21:51:51 -04:00
parent 43f686c22d
commit 98ada2588a

View File

@ -721,16 +721,16 @@ void MainWindow::dropEvent(QDropEvent* event) {
CRC::CRC32 generator;
const uint32_t crc = generator.compute_crc(*contents);
std::optional<ROM::Description> target = ROM::Description::from_crc(crc);
if(target) {
std::optional<ROM::Description> target_rom = ROM::Description::from_crc(crc);
if(target_rom) {
// Ensure the destination folder exists.
const std::string path = appDataLocation + "/ROMImages/" + rom.machine_name;
const std::string path = appDataLocation + "/ROMImages/" + target_rom->machine_name;
const QDir dir(QString::fromStdString(path));
if (!dir.exists())
dir.mkpath(".");
// Write into place.
const std::string destination = QDir::toNativeSeparators(QString::fromStdString(path+ "/" + rom.file_name)).toStdString();
const std::string destination = QDir::toNativeSeparators(QString::fromStdString(path+ "/" + target_rom->file_names[0])).toStdString();
FILE *const target = fopen(destination.c_str(), "wb");
fwrite(contents->data(), 1, contents->size(), target);
fclose(target);