From 008dfa5b0b7f06e0177cd71200d7c44cc7588e90 Mon Sep 17 00:00:00 2001 From: Reonu Date: Thu, 16 May 2024 19:46:15 +0100 Subject: [PATCH] Add missing semicolon --- include/recomp_game.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/recomp_game.h b/include/recomp_game.h index 2709958..dd1da12 100644 --- a/include/recomp_game.h +++ b/include/recomp_game.h @@ -31,7 +31,7 @@ namespace recomp { bool is_rom_loaded(); void set_rom_contents(std::vector&& new_rom); void do_rom_read(uint8_t* rdram, gpr ram_address, uint32_t physical_addr, size_t num_bytes); - void do_rom_pio(uint8_t* rdram, gpr ram_address, uint32_t physical_addr) + void do_rom_pio(uint8_t* rdram, gpr ram_address, uint32_t physical_addr); void start(ultramodern::WindowHandle window_handle, const ultramodern::audio_callbacks_t& audio_callbacks, const ultramodern::input_callbacks_t& input_callbacks, const ultramodern::gfx_callbacks_t& gfx_callbacks); void start_game(Game game); void message_box(const char* message);