mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Weinmann SD cards don't have a subfolder
This commit is contained in:
parent
f935f3dd61
commit
22527b9c44
@ -45,11 +45,6 @@ bool WeinmannLoader::Detect(const QString & givenpath)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Weinman has a...
|
|
||||||
if (!dir.cd("SOMNOsoft2")) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check for the settings file inside the .. folder
|
// Check for the settings file inside the .. folder
|
||||||
if (!dir.exists("WM_DATA.TDF")) {
|
if (!dir.exists("WM_DATA.TDF")) {
|
||||||
return false;
|
return false;
|
||||||
@ -121,19 +116,10 @@ void HighPass(char * data, int samples, float cutoff, float dt)
|
|||||||
|
|
||||||
int WeinmannLoader::Open(QString path)
|
int WeinmannLoader::Open(QString path)
|
||||||
{
|
{
|
||||||
QString newpath;
|
|
||||||
|
|
||||||
path = path.replace("\\", "/");
|
path = path.replace("\\", "/");
|
||||||
|
|
||||||
QString dirtag = "SOMNOsoft2";
|
QFile wmdata(path + "/WM_DATA.TDF");
|
||||||
|
|
||||||
if (path.endsWith("/" + dirtag)) {
|
|
||||||
return -1;
|
|
||||||
} else {
|
|
||||||
newpath = path + "/" + dirtag;
|
|
||||||
}
|
|
||||||
|
|
||||||
QFile wmdata(newpath + "/WM_DATA.TDF");
|
|
||||||
if (!wmdata.open(QFile::ReadOnly)) {
|
if (!wmdata.open(QFile::ReadOnly)) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user