ソースを参照

Fix compilation warnings on platforms without Imlib2.

tags/v0.99.beta16
Sam Hocevar sam 16年前
コミット
16d082f859
2個のファイルの変更2行の追加2行の削除
  1. +1
    -1
      src/aafire.c
  2. +1
    -1
      src/common-image.c

+ 1
- 1
src/aafire.c ファイルの表示

@@ -96,7 +96,7 @@ initialize (void)
{
int i;
#ifdef LIBCACA
unsigned int r[256], g[256], b[256], a[256];
uint32_t r[256], g[256], b[256], a[256];
#endif

#ifdef LIBCACA


+ 1
- 1
src/common-image.c ファイルの表示

@@ -75,7 +75,7 @@ struct image * load_image(char const * name)

#else
/* Try to load a BMP file */
unsigned int red[256], green[256], blue[256], alpha[256];
uint32_t red[256], green[256], blue[256], alpha[256];
unsigned int i, colors, offset, tmp, planes;
caca_file_t *f;



読み込み中…
キャンセル
保存