Move a couple of includes at top of the file

This commit is contained in:
riccardom 2009-05-08 22:20:22 +00:00
parent 3dbed90795
commit 550a71e640
1 changed files with 2 additions and 3 deletions

View File

@ -27,6 +27,7 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <gtk/gtk.h> #include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include <SDL.h> #include <SDL.h>
#include "types.h" #include "types.h"
@ -41,6 +42,7 @@
#include "rasterize.h" #include "rasterize.h"
#include "saves.h" #include "saves.h"
#include "mic.h" #include "mic.h"
#include "dTool.h"
#ifdef GDB_STUB #ifdef GDB_STUB
#include "gdbstub.h" #include "gdbstub.h"
@ -57,7 +59,6 @@
#define EMULOOP_PRIO (G_PRIORITY_HIGH_IDLE + 20) #define EMULOOP_PRIO (G_PRIORITY_HIGH_IDLE + 20)
#include <gdk/gdkkeysyms.h>
static int backupmemorytype=MC_TYPE_AUTODETECT; static int backupmemorytype=MC_TYPE_AUTODETECT;
static u32 backupmemorysize=1; static u32 backupmemorysize=1;
@ -1410,8 +1411,6 @@ static void Modify_Frameskip(GtkAction *action, GtkRadioAction *current)
/////////////////////////////// TOOLS MANAGEMENT /////////////////////////////// /////////////////////////////// TOOLS MANAGEMENT ///////////////////////////////
#include "dTool.h"
extern const dTool_t *dTools_list[]; extern const dTool_t *dTools_list[];
extern const int dTools_list_size; extern const int dTools_list_size;