mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-02-18 10:05:55 +00:00
removed two implicit cast warnings
git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@1025 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
@ -1207,8 +1207,8 @@ void Renderer::draw_motion_vectors(PresetOutputs *presetOutputs)
|
||||
glPointSize(presetOutputs->mv_l);
|
||||
glColor4f(presetOutputs->mv_r, presetOutputs->mv_g, presetOutputs->mv_b, presetOutputs->mv_a);
|
||||
|
||||
int numx = presetOutputs->mv_x;
|
||||
int numy = presetOutputs->mv_y;
|
||||
int numx = static_cast<int>(presetOutputs->mv_x);
|
||||
int numy = static_cast<int>(presetOutputs->mv_y);
|
||||
|
||||
if (numx + numy < 600)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user