mirror of https://github.com/LIJI32/SameBoy.git
15 lines
371 B
C
15 lines
371 B
C
#pragma once
|
|
|
|
#ifndef GB_DISABLE_REWIND
|
|
#include <stdbool.h>
|
|
#include "defs.h"
|
|
|
|
#ifdef GB_INTERNAL
|
|
internal void GB_rewind_push(GB_gameboy_t *gb);
|
|
internal void GB_rewind_invalidate_for_backstepping(GB_gameboy_t *gb);
|
|
#endif
|
|
bool GB_rewind_pop(GB_gameboy_t *gb);
|
|
void GB_set_rewind_length(GB_gameboy_t *gb, double seconds);
|
|
void GB_rewind_reset(GB_gameboy_t *gb);
|
|
#endif
|