1
General / Re: add_ticks_callback cpu fan noise on windows
« on: February 14, 2020, 05:01:35 PM »
I'm using a notebook with AMD Radeon, how do I set V-Sync? Is it in the radeon settings utility?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
{
local dt = fe.add_text( "", x*0.915, y*0.003, w*0.3, h*0.05 );
dt.align = Align.Left;
dt.charsize = x*0.02;
dt.alpha = 230;
dt.font = "Geforce Light";
function update_clock( ttime ){
local now = date();
dt.msg = format("%02d", now.hour) + ":" + format("%02d", now.min );
}
// fe.add_ticks_callback( this, "update_clock" );
}