Selaa lähdekoodia

Comment on render_image.

Steve Thielemann 4 vuotta sitten
vanhempi
commit
e2edfbb9ce
1 muutettua tiedostoa jossa 8 lisäystä ja 6 poistoa
  1. 8 6
      render.cpp

+ 8 - 6
render.cpp

@@ -21,6 +21,9 @@ void reset_render(void) {
   render_overlimit = 0;
 }
 
+// or possibly a vector, and pop the image pointer off
+// allowing for multiple images.
+
 const char **image_data = NULL;
 int image_size = 0;
 
@@ -222,18 +225,17 @@ int send_image(int fd, int x, int y) {
   int i;
   const char **lines = image_data;
 
-  if (lines == NULL ) {
+  if (lines == NULL) {
     ZF_LOGE("No image data for send_image(%d,%d)", x, y);
     return 0;
   }
 
-  for(i = 0; i < image_size;i++) {
-  send_goto(fd, x, y);
-  y++;
+  for (i = 0; i < image_size; i++) {
+    send_goto(fd, x, y);
+    y++;
     write(fd, lines[i], strlen(lines[i]));
-
   }
-  
+
   // success
   reset_image();
   return 1;