RetroArch/runahead/run_ahead.h
twinaphex 6bc1802914 Move run_ahead.c to retroarch.c - most of the runloop
should now be self-contained in one file. Allows us to
turn more functions static, remove more extraneous functions
that just consisted of a single line (mostly getters/setters), etc.
2019-06-20 09:30:44 +02:00

17 lines
233 B
C

#ifndef __RUN_AHEAD_H__
#define __RUN_AHEAD_H__
#include <stddef.h>
#include <boolean.h>
#include <retro_common_api.h>
RETRO_BEGIN_DECLS
bool want_fast_savestate(void);
bool get_hard_disable_audio(void);
RETRO_END_DECLS
#endif