SFML community forums

General => General discussions => Topic started by: belphegor on March 29, 2012, 04:38:07 pm

Title: About timer asMiliseconds impl
Post by: belphegor on March 29, 2012, 04:38:07 pm
Code: [Select]
Int32 Time::asMilliseconds() const
{
    return static_cast<Uint32>(m_microseconds / 1000);
}

Care to explain why cast to Uint32 and then return Int32?
Title: Re: About timer asMiliseconds impl
Post by: Laurent on March 29, 2012, 05:20:36 pm
Just a mistake, it's corrected now.
Title: Re: About timer asMiliseconds impl
Post by: belphegor on March 29, 2012, 05:47:35 pm
There is still few more casting "mistakes" in same file.  :)
Title: Re: About timer asMiliseconds impl
Post by: Laurent on March 29, 2012, 05:53:21 pm
Arg... Should be ok now :P