summaryrefslogtreecommitdiff
path: root/replay.h
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2019-05-12 16:29:58 +0100
committerLuke Bratch <luke@bratch.co.uk>2019-05-12 16:29:58 +0100
commit62fe87f6052dc28e38f2edc940b2002ede087277 (patch)
treee55830502e0bc29bf0210674aafbe5c9c3295f2d /replay.h
parent44ed93cdc6a2d7dda355266bfc69134e30278259 (diff)
Add a settings structure for passing around everywhere to store config/settings. Also fix the insanely inconsistent spelling/naming of replay log related things.
Diffstat (limited to 'replay.h')
-rw-r--r--replay.h6
1 files changed, 3 insertions, 3 deletions
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