drop some unnecessary inlines

apparently somebody compiles with msvc?
This commit is contained in:
notaz 2017-10-13 23:49:13 +03:00
parent b5f5dc1fad
commit e9a11abb3c
7 changed files with 8 additions and 7 deletions

View file

@ -366,7 +366,7 @@ static void p32x_run_events(unsigned int until)
oldest, event_time_next);
}
static inline void run_sh2(SH2 *sh2, int m68k_cycles)
static void run_sh2(SH2 *sh2, int m68k_cycles)
{
int cycles, done;

View file

@ -49,7 +49,7 @@ static void SekSyncM68k(void)
pprof_end(m68k);
}
static inline void SekRunM68k(int cyc)
static __inline void SekRunM68k(int cyc)
{
Pico.t.m68c_aim += cyc;
cyc = Pico.t.m68c_aim - Pico.t.m68c_cnt;