forked from len0rd/rockbox
make checkwps accept .rfms files as remote skins
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26082 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ddc91c3ee3
commit
36778730e6
1 changed files with 2 additions and 1 deletions
|
@ -273,7 +273,8 @@ int main(int argc, char **argv)
|
|||
printf("Checking %s...\n", argv[filearg]);
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
if((strcmp(&argv[filearg][strlen(argv[filearg])-4], "rwps") == 0) ||
|
||||
(strcmp(&argv[filearg][strlen(argv[filearg])-4], "rsbs") == 0))
|
||||
(strcmp(&argv[filearg][strlen(argv[filearg])-4], "rsbs") == 0) ||
|
||||
(strcmp(&argv[filearg][strlen(argv[filearg])-4], "rfms") == 0))
|
||||
screen = SCREEN_REMOTE;
|
||||
else
|
||||
screen = SCREEN_MAIN;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue