1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-30 03:32:50 +00:00

Fix 100l typo introduced in last commit.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29761 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-10-08 11:32:17 +00:00
parent 6aef595f93
commit 2df6aba009

View File

@ -168,7 +168,7 @@ LOCAL unsigned int get1bit(void)
bitindex++;
wordpointer += (bitindex>>3);
bitindex &= 7;
return (val >> 7) & 1;
return (rval >> 7) & 1;
}
LOCAL void set_pointer(int backstep)