From 3b5b15c085e24600ccade868a261b00ec6c37a44 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Thu, 6 Jun 2019 17:39:12 -0700 Subject: [PATCH] Fix cast in call to read_string(). --- src/sdl/sf_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl/sf_util.c b/src/sdl/sf_util.c index 48b1077..9977850 100644 --- a/src/sdl/sf_util.c +++ b/src/sdl/sf_util.c @@ -582,7 +582,7 @@ static int ingame_read_file_name (char *file_name, const char *default_name, int print_string (default_name); print_string ("\": "); - read_string (MAX_FILE_NAME - 4, (byte *) file_name); + read_string (MAX_FILE_NAME - 4, (zchar *) file_name); /* Use the default name if nothing was typed */ -- 2.34.1