From 0b667406fb717aba6666b72fcafb8febf04c927f Mon Sep 17 00:00:00 2001 From: toaster Date: Thu, 18 Apr 2019 14:01:53 +0100 Subject: [PATCH] Swap FF_GLOBALANIM and FF_RANDOMANIM's values to reflect priority of behaviour. --- src/p_pspr.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/p_pspr.h b/src/p_pspr.h index f5ecbeb92..b42692462 100644 --- a/src/p_pspr.h +++ b/src/p_pspr.h @@ -65,10 +65,10 @@ /// \brief Frame flags - Animate: Simple stateless animation #define FF_ANIMATE 0x01000000 -/// \brief Frame flags - Animate: Start at a random place in the animation (mutually exclusive with below) -#define FF_RANDOMANIM 0x02000000 -/// \brief Frame flags - Animate: Sync animation to global timer (mutually exclusive with above) -#define FF_GLOBALANIM 0x04000000 +/// \brief Frame flags - Animate: Sync animation to global timer (mutually exclusive with below, currently takes priority) +#define FF_GLOBALANIM 0x02000000 +/// \brief Frame flags - Animate: Start at a random place in the animation (mutually exclusive with above) +#define FF_RANDOMANIM 0x04000000 /** \brief translucency tables