diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2020-09-29 17:16:02 +0200 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2020-09-29 17:16:02 +0200 |
commit | eeb26cfc7db1b010e9b9373f6f3f5bce3f2240fa (patch) | |
tree | 7acbf1c23a85e572f7bd4d537319de5f01581f86 /src | |
parent | Fix build (if -> ifdef) (diff) | |
download | re3-eeb26cfc7db1b010e9b9373f6f3f5bce3f2240fa.tar re3-eeb26cfc7db1b010e9b9373f6f3f5bce3f2240fa.tar.gz re3-eeb26cfc7db1b010e9b9373f6f3f5bce3f2240fa.tar.bz2 re3-eeb26cfc7db1b010e9b9373f6f3f5bce3f2240fa.tar.lz re3-eeb26cfc7db1b010e9b9373f6f3f5bce3f2240fa.tar.xz re3-eeb26cfc7db1b010e9b9373f6f3f5bce3f2240fa.tar.zst re3-eeb26cfc7db1b010e9b9373f6f3f5bce3f2240fa.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/timebars.cpp | 4 | ||||
-rw-r--r-- | src/core/timebars.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/core/timebars.cpp b/src/core/timebars.cpp index 6b841a5c..7aaa04e6 100644 --- a/src/core/timebars.cpp +++ b/src/core/timebars.cpp @@ -50,7 +50,7 @@ void tbInit() #endif } -void tbStartTimer(int32 unk, char *name) +void tbStartTimer(int32 unk, const char *name) { strcpy(TimerBar.Timers[TimerBar.count].name, name); TimerBar.Timers[TimerBar.count].unk = unk; @@ -58,7 +58,7 @@ void tbStartTimer(int32 unk, char *name) TimerBar.count++; } -void tbEndTimer(char* name) +void tbEndTimer(const char* name) { uint32 n = 1500; for (uint32 i = 0; i < TimerBar.count; i++) { diff --git a/src/core/timebars.h b/src/core/timebars.h index 6d3b853e..1a5a0573 100644 --- a/src/core/timebars.h +++ b/src/core/timebars.h @@ -1,6 +1,6 @@ #pragma once void tbInit(); -void tbStartTimer(int32, char*); -void tbEndTimer(char*); +void tbStartTimer(int32, const char*); +void tbEndTimer(const char*); void tbDisplay();
\ No newline at end of file |