Added localization, datetime and power management

This commit is contained in:
Jozef Nagy 2025-05-15 21:32:40 +02:00
parent dd4fda27bb
commit a3bc0fc76c
Signed by untrusted user who does not match committer: crz
GPG key ID: 459A4811CEAC7068
13 changed files with 34046 additions and 14 deletions

View file

@ -33,7 +33,7 @@ void terminal_print(struct ui_context *ctx, char *fmt, ...)
char *s = (char *)&buf;
va_start(args, fmt);
snprintf((char *)&buf, sizeof(buf), fmt, args);
vsnprintf((char *)&buf, sizeof(buf), fmt, args);
va_end(args);
while (*s) {