1. 15 Jan, 2021 30 commits
  2. 12 Jan, 2021 1 commit
  3. 03 Dec, 2020 1 commit
  4. 04 Nov, 2020 6 commits
  5. 03 Nov, 2020 2 commits
    • Ulrich Sibiller's avatar
      Clipboard.c: fix bug in special optimization for nested settings · b07b6c53
      Ulrich Sibiller authored
      Fixes ArcticaProject/nx-libs#941
      b07b6c53
    • Ulrich Sibiller's avatar
      compext/Png.c: fix shadowing · 522eea6f
      Ulrich Sibiller authored
      Png.c: In function ‘PngWriteData’:
      Png.c:603:38: warning: declaration of ‘png_ptr’ shadows a global declaration [-Wshadow]
        603 | static void PngWriteData(png_structp png_ptr, png_bytep data, png_size_t length)
            |                          ~~~~~~~~~~~~^~~~~~~
      Png.c:77:13: note: shadowed declaration is here
         77 | png_structp png_ptr;
            |             ^~~~~~~
      Png.c: In function ‘PngFlushData’:
      Png.c:610:38: warning: declaration of ‘png_ptr’ shadows a global declaration [-Wshadow]
        610 | static void PngFlushData(png_structp png_ptr)
            |                          ~~~~~~~~~~~~^~~~~~~
      Png.c:77:13: note: shadowed declaration is here
         77 | png_structp png_ptr;
            |             ^~~~~~~
      522eea6f