Change from 32 bit to 64 bit timer

This commit is contained in:
strattond 2025-05-27 08:40:00 +10:00
parent d2dafdec50
commit 91dd763409
22 changed files with 121 additions and 144 deletions

View file

@ -660,7 +660,7 @@ void cHTMLTemplate::Load( CScriptSection *found )
if( UTag == "UPDATE" )
{
updateTimer = static_cast<UI32>( std::stoul( data, nullptr, 0 ));
updateTimer = static_cast<TVAL>( std::stoul( data, nullptr, 0 ));
}
else if( UTag == "TYPE" )
{
@ -868,7 +868,7 @@ std::string cHTMLTemplate::GetInput( void ) const
//o------------------------------------------------------------------------------------------------o
//| Purpose - Gets the next scheduled Update time
//o------------------------------------------------------------------------------------------------o
UI32 cHTMLTemplate::GetScheduledUpdate( void ) const
TVAL cHTMLTemplate::GetScheduledUpdate( void ) const
{
return scheduledUpdate;
}
@ -878,7 +878,7 @@ UI32 cHTMLTemplate::GetScheduledUpdate( void ) const
//o------------------------------------------------------------------------------------------------o
//| Purpose - Gets the Update timer
//o------------------------------------------------------------------------------------------------o
UI32 cHTMLTemplate::GetUpdateTimer( void ) const
TVAL cHTMLTemplate::GetUpdateTimer( void ) const
{
return updateTimer;
}