comparison src/madplug/input.c @ 613:85a70ace8c02 trunk

[svn] - press F5 on not yet played stream no longer hangs. - some cleanups.
author yaz
date Wed, 07 Feb 2007 01:10:37 -0800
parents 951b24719ce9
children a7a28782c1b0
comparison
equal deleted inserted replaced
612:951b24719ce9 613:85a70ace8c02
121 info->size = vfs_ftell(info->infile); 121 info->size = vfs_ftell(info->infile);
122 vfs_fseek(info->infile, 0, SEEK_SET); 122 vfs_fseek(info->infile, 0, SEEK_SET);
123 info->remote = info->size == 0 ? TRUE : FALSE; 123 info->remote = info->size == 0 ? TRUE : FALSE;
124 124
125 #ifdef DEBUG 125 #ifdef DEBUG
126 g_message("i: info->size == %lu", info->size);
126 g_message("e: input_init"); 127 g_message("e: input_init");
127 #endif 128 #endif
128 return TRUE; 129 return TRUE;
129 } 130 }
130 131