Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

winsim: Build fixes for current mingw64 cross compiles

Change-Id: I5d523a4aa0ca9044b8f83ae6aafd4f3705ff96d6

+3 -1
+1 -1
apps/plugins/mikmod/mikmod.h
··· 145 145 #if defined(_LP64) || defined(__LP64__) || defined(__arch64__) || defined(__alpha) || defined(__x86_64) || defined(__powerpc64__) 146 146 /* 64 bit architectures: */ 147 147 typedef signed int SLONG; 148 - #if !defined(_MIKMOD_AMIGA) 148 + #if !defined(_MIKMOD_AMIGA) && !defined(WIN32) 149 149 typedef unsigned int ULONG; 150 150 #endif 151 151
+1
firmware/target/hosted/sdl/button-sdl.c
··· 21 21 22 22 #include <math.h> 23 23 #include <stdlib.h> /* EXIT_SUCCESS */ 24 + #include <stdio.h> 24 25 #include "sim-ui-defines.h" 25 26 #ifdef HAVE_REMOTE_LCD 26 27 #include "lcd-remote.h"
+1
firmware/target/hosted/sdl/system-sdl.c
··· 22 22 #include <SDL.h> 23 23 #include <SDL_thread.h> 24 24 #include <stdlib.h> 25 + #include <stdio.h> 25 26 #include <string.h> 26 27 #include <inttypes.h> 27 28 #ifdef __unix__