Remove an empty function, used as a callback though.

This commit is contained in:
riccardom 2009-02-02 22:11:53 +00:00
parent 257a138d82
commit fff695d3c1
1 changed files with 0 additions and 8 deletions

View File

@ -848,10 +848,6 @@ static int gtkFloatExposeEvent (GtkWidget *widget, GdkEventExpose *event, gpoint
return 1;
}
static void Draw()
{
}
/////////////////////////////// KEYS AND STYLUS UPDATE ///////////////////////////////////////
static gboolean Stylus_Move(GtkWidget *w, GdkEventMotion *e, gpointer data)
@ -1408,8 +1404,6 @@ gboolean EmuLoop(gpointer data)
}
NDS_SkipFrame(false);
Draw();
_updateDTools();
gtk_widget_queue_draw( nds_screen_widget);
@ -1916,8 +1910,6 @@ common_gtk_main( struct configured_features *my_config)
g_signal_connect(G_OBJECT(pDrawingArea), "motion_notify_event",
G_CALLBACK(Stylus_Move), &my_config->opengl);
g_signal_connect( G_OBJECT(pDrawingArea), "realize",
G_CALLBACK(Draw), NULL ) ;
g_signal_connect( G_OBJECT(pDrawingArea), "expose_event",
G_CALLBACK(gtkFloatExposeEvent), NULL ) ;