aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/supernova/supernova2/state.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/supernova/supernova2/state.cpp b/engines/supernova/supernova2/state.cpp
index 8c94f1e518..28a2c0a710 100644
--- a/engines/supernova/supernova2/state.cpp
+++ b/engines/supernova/supernova2/state.cpp
@@ -1298,7 +1298,7 @@ void GameManager2::drawClock() {
s[0] = time % 10 + 48;
time /= 10;
_vm->renderText(s, 293, 180, kColorWhite99);
- strcpy(s, " 0:00");
+ Common::strlcpy(s, " 0:00", sizeof(s));
s[4] = time % 10 + 48;
time /= 10;
s[3] = time % 10 + 48;