forked from len0rd/rockbox
make checkwps able to check .rsbs files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23667 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ad9f554eb2
commit
d236af05a0
1 changed files with 2 additions and 1 deletions
|
|
@ -271,7 +271,8 @@ int main(int argc, char **argv)
|
||||||
while (argv[filearg]) {
|
while (argv[filearg]) {
|
||||||
printf("Checking %s...\n", argv[filearg]);
|
printf("Checking %s...\n", argv[filearg]);
|
||||||
#ifdef HAVE_REMOTE_LCD
|
#ifdef HAVE_REMOTE_LCD
|
||||||
if(strcmp(&argv[filearg][strlen(argv[filearg])-4], "rwps") == 0)
|
if((strcmp(&argv[filearg][strlen(argv[filearg])-4], "rwps") == 0) ||
|
||||||
|
(strcmp(&argv[filearg][strlen(argv[filearg])-4], "rsbs") == 0))
|
||||||
screen = SCREEN_REMOTE;
|
screen = SCREEN_REMOTE;
|
||||||
#endif
|
#endif
|
||||||
wps_screen = &screens[screen];
|
wps_screen = &screens[screen];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue