SameBoy/Core/rewind.h

15 lines
304 B
C

#ifndef rewind_h
#define rewind_h
#include <stdbool.h>
#include "defs.h"
#ifdef GB_INTERNAL
internal void GB_rewind_push(GB_gameboy_t *gb);
internal void GB_rewind_free(GB_gameboy_t *gb);
#endif
bool GB_rewind_pop(GB_gameboy_t *gb);
void GB_set_rewind_length(GB_gameboy_t *gb, double seconds);
#endif