summaryrefslogtreecommitdiff
path: root/include/log.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/log.hpp')
-rw-r--r--include/log.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/log.hpp b/include/log.hpp
index cdb6a9f..bff3d05 100644
--- a/include/log.hpp
+++ b/include/log.hpp
@@ -29,12 +29,12 @@ typedef struct {
u32 history_length;
char history[MAX_LEN_LOG_HISTORY][MAX_LEN_LOG_TXT];
ImVec4 colors[MAX_LEN_LOG_HISTORY];
-} log;
+} program_log;
#define STOPWATCH_START tick_t timestamp_start = timer_current();
#define STOPWATCH_TIME (timer_elapsed(timestamp_start)*1000.0f)
-log* get_log();
+program_log* get_log();
void log_clear();
void log_aerr(a_err errors);