1
0
Fork 0
forked from len0rd/rockbox

patch #702874 by Craig Sather, fixes a pause bug in WPS

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3447 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2003-03-15 12:09:09 +00:00
parent 7105b28bba
commit 001226c7e1
2 changed files with 7 additions and 1 deletions

View file

@ -739,6 +739,12 @@ int wps_show(void)
restore = true;
}
if (mpeg_status() & MPEG_STATUS_PAUSE) {
paused = true;
} else {
paused = false;
}
while ( 1 )
{