mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-18 02:55:12 +00:00
Fixed round_to_int to handle negative numbers properly
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@1000 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
parent
e39a3ad8e4
commit
e7b786d79a
@ -289,5 +289,9 @@ void update_stuff()
|
||||
|
||||
int round_to_int(float f)
|
||||
{
|
||||
return (int) (f + 0.5);
|
||||
if (f >= 0.0) {
|
||||
return (int) (f + 0.5);
|
||||
} else {
|
||||
return (int) (f - 0.5);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user