From 62fe87f6052dc28e38f2edc940b2002ede087277 Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Sun, 12 May 2019 16:29:58 +0100 Subject: Add a settings structure for passing around everywhere to store config/settings. Also fix the insanely inconsistent spelling/naming of replay log related things. --- replay.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'replay.h') diff --git a/replay.h b/replay.h index e0b5822..7f1e331 100644 --- a/replay.h +++ b/replay.h @@ -12,10 +12,10 @@ #define TIMELEN 11 // 32-bit unixtime is up to 10 characters (+1 for null char) // TODO - Make this Year 2038 proof #define TIMELENF 11 // [HH:MM:SS] = 10 characters + 1 for null char -int relaylines(int seconds); +int replaylines(int seconds); -int readrelayline(int seconds, int linenum, char *str); +int readreplayline(int seconds, int linenum, char *str); -int writerelayline(char *str); +int writereplayline(char *str); #endif -- cgit v1.2.3