Skip to content
Snippets Groups Projects
Commit 0e9e499f authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Resolve some MSVC warnings

parent a4ad0870
No related branches found
No related tags found
No related merge requests found
...@@ -1726,7 +1726,7 @@ bitmap_double_mult_inside(int maxwidth, int maxheight) ...@@ -1726,7 +1726,7 @@ bitmap_double_mult_inside(int maxwidth, int maxheight)
int int
bitmap_largest_mult_inside(int maxwidth, int maxheight) bitmap_largest_mult_inside(int maxwidth, int maxheight)
{ {
return bitmap_double_mult_inside(maxwidth, maxheight); return (int)bitmap_double_mult_inside(maxwidth, maxheight);
} }
// Must be called with vstatlock // Must be called with vstatlock
...@@ -1736,8 +1736,10 @@ bitmap_get_scaled_win_size(double scale, int *w, int *h, int maxwidth, int maxhe ...@@ -1736,8 +1736,10 @@ bitmap_get_scaled_win_size(double scale, int *w, int *h, int maxwidth, int maxhe
bool wc = bitmap_width_controls(); bool wc = bitmap_width_controls();
double max; double max;
if (maxwidth == 0 && maxheight == 0) if (maxwidth == 0 && maxheight == 0) {
return bitmap_get_scaled_win_size_nomax(scale, w, h); bitmap_get_scaled_win_size_nomax(scale, w, h);
return;
}
if (maxwidth < vstat.scrnwidth) if (maxwidth < vstat.scrnwidth)
maxwidth = vstat.scrnwidth; maxwidth = vstat.scrnwidth;
if (maxheight < vstat.scrnheight) if (maxheight < vstat.scrnheight)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment