mirror of
https://github.com/UOX3DevTeam/UOX3
synced 2026-08-13 12:27:04 -04:00
Change from 32 bit to 64 bit timer
This commit is contained in:
parent
d2dafdec50
commit
91dd763409
22 changed files with 121 additions and 144 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue