From 5dcf31beec60d18bdfe551c300ecba9f75a66230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sigrid=20Solveig=20Hafl=C3=ADnud=C3=B3ttir?= Date: Thu, 29 Aug 2024 17:08:10 +0200 Subject: [PATCH] fix Plan 9 build --- src/devices/screen.h | 2 +- src/devices/system.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/screen.h b/src/devices/screen.h index 2ad82d5..d0e9057 100644 --- a/src/devices/screen.h +++ b/src/devices/screen.h @@ -23,7 +23,7 @@ void screen_fill(Uint8 *layer, int color); void screen_rect(Uint8 *layer, Uint16 x1, Uint16 y1, Uint16 x2, Uint16 y2, int color); void screen_palette(void); void screen_resize(Uint16 width, Uint16 height, int scale); -void screen_redraw(); +void screen_redraw(void); Uint8 screen_dei(Uint8 addr); void screen_deo(Uint8 addr); diff --git a/src/devices/system.h b/src/devices/system.h index f9f0704..71d8133 100644 --- a/src/devices/system.h +++ b/src/devices/system.h @@ -19,4 +19,4 @@ int system_boot(Uint8 *ram, char *rom); Uint8 system_dei(Uint8 addr); void system_deo(Uint8 addr); -extern char *boot_rom; \ No newline at end of file +extern char *boot_rom;