diff options
Diffstat (limited to 'plugins')
| -rwxr-xr-x | plugins/peopsxgl/soft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/peopsxgl/soft.c b/plugins/peopsxgl/soft.c index 829593c5..21fe4b09 100755 --- a/plugins/peopsxgl/soft.c +++ b/plugins/peopsxgl/soft.c @@ -1212,7 +1212,7 @@ static __inline int shl10idiv(int x, int y) { long long int bi=x; bi<<=10; - return bi/y; + return (int)(bi/y); } #endif |
