Sfoglia il codice sorgente

Fixed compile warning

Sam Lantinga 3 anni fa
parent
commit
3b083b9911
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/render/SDL_render.c

+ 2 - 2
src/render/SDL_render.c

@@ -2843,7 +2843,7 @@ static int plotLineLow(SDL_Renderer *renderer, float x0, float y0, float x1, flo
             D += 2*dy;
         }
     }
-    render_count = (tmp - points);
+    render_count = (int)(tmp - points);
 
     if (!draw_last) {
         --render_count;
@@ -2901,7 +2901,7 @@ static int plotLineHigh(SDL_Renderer *renderer, float x0, float y0, float x1, fl
             D += 2*dx;
         }
     }
-    render_count = (tmp - points);
+    render_count = (int)(tmp - points);
 
     if (!draw_last) {
         --render_count;