diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-12-08 00:11:03 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-12-08 00:11:03 +0000 |
commit | 4c7dc59a041f5385988afcaac760ffe441d6f609 (patch) | |
tree | 4bd29455d1d5462654d066ac45f3ef14de76b793 | |
parent | 1f5caf1867e1a3e020f60d29b6e5513abc4e53c4 (diff) | |
download | mpv-4c7dc59a041f5385988afcaac760ffe441d6f609.tar.bz2 mpv-4c7dc59a041f5385988afcaac760ffe441d6f609.tar.xz |
Remove unused variable, fixes the warning:
libvo/vo_macosx.m:735: warning: unused variable 'lastTime'
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28110 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libvo/vo_macosx.m | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libvo/vo_macosx.m b/libvo/vo_macosx.m index 41e3663ce5..0eabb68e6e 100644 --- a/libvo/vo_macosx.m +++ b/libvo/vo_macosx.m @@ -732,7 +732,6 @@ static int control(uint32_t request, void *data, ...) - (void) render { int curTime; - static int lastTime = 0; glClear(GL_COLOR_BUFFER_BIT); |