mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-25 06:12:47 -06:00
*Core: Fix in Randomf (INT64 should be I64)
git-svn-id: svn://ultimatepp.org/upp/trunk@4441 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
136651749a
commit
4c8a8a412a
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ qword Random64(qword n)
|
|||
|
||||
double Randomf()
|
||||
{
|
||||
return Random64(INT64(4503599627370496)) / 4503599627370496.0;
|
||||
return Random64(I64(4503599627370496)) / 4503599627370496.0;
|
||||
}
|
||||
|
||||
END_UPP_NAMESPACE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue