Commit 5cbb5848 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

macosx: remove a NSLog message.

parent c543a40d
......@@ -600,8 +600,8 @@
if( !p_input ) return;
c = [[openPanel filenames] count];
NSLog( @"count: %i", c );
for (int i = 0; [[openPanel filenames] count] > i ; i++)
for (int i = 0; i < [[openPanel filenames] count] ; i++)
{
msg_Dbg( VLCIntf, "loading subs from %s", [[[openPanel filenames] objectAtIndex: i] UTF8String] );
if( input_AddSubtitle( p_input, [[[openPanel filenames] objectAtIndex: i] UTF8String], TRUE ) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment