# HG changeset patch # User diego # Date 1284047185 0 # Node ID d1e3a6f7d48aa8a947722b998aaf098d0a472ec8 # Parent c2d9c19985cbfdd974d5182cd57b79f7f0df8e2c Move use_menu extern declaration to mplayer.h, where it belongs. diff -r c2d9c19985cb -r d1e3a6f7d48a command.c --- a/command.c Thu Sep 09 15:41:43 2010 +0000 +++ b/command.c Thu Sep 09 15:46:25 2010 +0000 @@ -70,8 +70,6 @@ #define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5)) -extern int use_menu; - static void rescale_input_coordinates(int ix, int iy, double *dx, double *dy) { //remove the borders, if any, and rescale to the range [0,1],[0,1] diff -r c2d9c19985cb -r d1e3a6f7d48a mplayer.h --- a/mplayer.h Thu Sep 09 15:41:43 2010 +0000 +++ b/mplayer.h Thu Sep 09 15:46:25 2010 +0000 @@ -42,6 +42,7 @@ extern char * filename; extern int stream_cache_size; +extern int use_menu; extern int autosync; extern double start_pts; extern int frame_dropping;