mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
rbutil:
1. Make Themesite integration work again 2. Fix FS#10055 (Theme sizes are 0) and FS#10061 (Incorrect Target missmatch detected) 3. Rename platform and voicename in rbutil.ini to reflect better what they are. (modelnames from either configure or the buildserver) 4. Fix a few places where they were used incorrectly git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20558 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
463c96eb77
commit
75a5b9321b
7 changed files with 83 additions and 83 deletions
|
|
@ -402,11 +402,11 @@ QString Detect::check(RbSettings* settings, bool permission)
|
|||
|
||||
// Check TargetId
|
||||
QString installed = installedTarget(settings->mountpoint());
|
||||
if(!installed.isEmpty() && installed != settings->curPlatform())
|
||||
if(!installed.isEmpty() && installed != settings->curConfigure_Modelname())
|
||||
{
|
||||
text += QObject::tr("<li>Target mismatch detected.\n"
|
||||
"Installed target: %1, selected target: %2.</li>")
|
||||
.arg(settings->name(installed), settings->curName());
|
||||
.arg(installed, settings->curName());
|
||||
}
|
||||
|
||||
if(!text.isEmpty())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue