Procházet zdrojové kódy

First HRPT palette! Also fix some warnings in pngio.c

tags/v1.8.0
Xerbo před 4 roky
rodič
revize
8e77155394
2 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. binární
      palettes/Falsecolor-N19-HRPT-High-Veg.png
  2. +2
    -1
      pngio.c

binární
palettes/Falsecolor-N19-HRPT-High-Veg.png Zobrazit soubor

Před Za
Šířka: 256  |  Výška: 256  |  Velikost: 89 KiB

+ 2
- 1
pngio.c Zobrazit soubor

@@ -22,6 +22,7 @@
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <math.h>

#include "common.h"
#include "offsets.h"
@@ -317,7 +318,7 @@ int ImageOut(options_t *opts, image_t *img, int offset, int width, char *desc, c

// Parse effects
int crop_telemetry = 0;
for(int i = 0; i < strlen(opts->effects); i++){
for(unsigned long int i = 0; i < strlen(opts->effects); i++){
switch (opts->effects[i]) {
case Crop_Telemetry:
width -= TOTAL_TELE;


Načítá se…
Zrušit
Uložit