Silence logging of cellScreenShot

This commit is contained in:
Eladash 2024-03-26 11:06:59 +02:00 committed by Elad Ashkenazi
parent 9245565085
commit 4dff8b16f1
2 changed files with 12 additions and 5 deletions

View file

@ -220,7 +220,7 @@ u64 get_guest_system_time(u64 time)
// Functions
error_code sys_time_get_timezone(vm::ptr<s32> timezone, vm::ptr<s32> summertime)
{
sys_time.notice("sys_time_get_timezone(timezone=*0x%x, summertime=*0x%x)", timezone, summertime);
sys_time.trace("sys_time_get_timezone(timezone=*0x%x, summertime=*0x%x)", timezone, summertime);
#ifdef _WIN32
TIME_ZONE_INFORMATION tz{};