comparison mplayer.c @ 33481:de7945cbcfa0

Fix compilation without gui.
author cehoyos
date Tue, 07 Jun 2011 00:08:06 +0000
parents d068eac6cbf9
children e46989c7f47e
comparison
equal deleted inserted replaced
33480:e413b573e4ec 33481:de7945cbcfa0
4167 #endif 4167 #endif
4168 mplEnd(); 4168 mplEnd();
4169 } 4169 }
4170 #endif 4170 #endif
4171 4171
4172 if ((use_gui && guiIntfStruct.Playing) || mpctx->playtree_iter != NULL || player_idle_mode) { 4172 if (
4173 #ifdef CONFIG_GUI
4174 (use_gui && guiIntfStruct.Playing) ||
4175 #endif
4176 mpctx->playtree_iter != NULL || player_idle_mode) {
4173 if (!mpctx->playtree_iter) 4177 if (!mpctx->playtree_iter)
4174 filename = NULL; 4178 filename = NULL;
4175 mpctx->eof = 0; 4179 mpctx->eof = 0;
4176 goto play_next_file; 4180 goto play_next_file;
4177 } 4181 }