diff --git a/nx/source/runtime/newlib.c b/nx/source/runtime/newlib.c index 7f8f4a4d..56e6542f 100644 --- a/nx/source/runtime/newlib.c +++ b/nx/source/runtime/newlib.c @@ -321,7 +321,7 @@ void __libnx_init_time(void) memset(envstr, 0, sizeof(envstr)); //Avoid using *printf. - strncpy(envstr, info.timezoneName, sizeof(envstr)-1); + strncpy(envstr, /*info.timezoneName*/"NX", sizeof(envstr)-1); // Some tznames have numeric characters and '-'/'+', so the actual tzname can't be used. strptr = &envstr[strlen(envstr)]; *strptr++ = is_west ? '+' : '-';