Remove unused variable

This commit is contained in:
RichardG867
2020-11-18 01:17:42 -03:00
parent 8fff49d5c5
commit 2608c392bf
2 changed files with 2 additions and 4 deletions

View File

@@ -102,8 +102,7 @@ extern int sound_is_float, /* (C) sound uses FP values */
SSI2001, /* (C) sound option */
voodoo_enabled; /* (C) video option */
extern uint32_t mem_size; /* (C) memory size */
extern int cpu_family, /* (C) cpu family */
cpu, /* (C) cpu type */
extern int cpu, /* (C) cpu type */
cpu_use_dynarec, /* (C) cpu uses/needs Dyna */
fpu_type; /* (C) fpu type */
extern int time_sync; /* (C) enable time sync */

View File

@@ -136,8 +136,7 @@ int sound_is_float = 1, /* (C) sound uses FP values */
SSI2001 = 0, /* (C) sound option */
voodoo_enabled = 0; /* (C) video option */
uint32_t mem_size = 0; /* (C) memory size */
int cpu_family = 0, /* (C) cpu family */
cpu_use_dynarec = 0, /* (C) cpu uses/needs Dyna */
int cpu_use_dynarec = 0, /* (C) cpu uses/needs Dyna */
cpu = 0, /* (C) cpu type */
fpu_type = 0; /* (C) fpu type */
int time_sync = 0; /* (C) enable time sync */