X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsystem.h;h=706c4fda6dfe9c842e84b2aacaf1f7138b868424;hb=1c3065c351ef8a8637af5540dea2b39c1d86e80f;hp=930cc113f0ac38d3015eca1d7d6145dc1b3dc786;hpb=e1fdeb57afb3db322b3757d8105c66ba33cadca4;p=rocksndiamonds.git diff --git a/src/libgame/system.h b/src/libgame/system.h index 930cc113..706c4fda 100644 --- a/src/libgame/system.h +++ b/src/libgame/system.h @@ -234,9 +234,11 @@ #if defined(PLATFORM_UNIX) #define IS_PARENT_PROCESS() (audio.mixer_pid != getpid()) #define IS_CHILD_PROCESS() (audio.mixer_pid == getpid()) +#define HAS_CHILD_PROCESS() (audio.mixer_pid > 0) #else #define IS_PARENT_PROCESS() TRUE #define IS_CHILD_PROCESS() FALSE +#define HAS_CHILD_PROCESS() FALSE #endif /* type definitions */ @@ -327,7 +329,6 @@ struct FontBitmapInfo #if defined(TARGET_X11_NATIVE_PERFORMANCE_WORKAROUND) Pixmap *clip_mask; /* single-char-only clip mask array for X11 */ - int last_num_chars; /* to free last font clip masks */ #endif };