From d9b20d78967bf569f6b755829855739fb21aa257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Gr=C3=BCnbacher?= Date: Tue, 5 Aug 2014 18:48:37 +0200 Subject: [PATCH] amxconst: Move SND_* constants where they belong --- plugins/include/amxconst.inc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/plugins/include/amxconst.inc b/plugins/include/amxconst.inc index 7550c2ec..d4d51087 100755 --- a/plugins/include/amxconst.inc +++ b/plugins/include/amxconst.inc @@ -213,6 +213,14 @@ public stock const MaxClients; /* Maximum number of players the server supports */ #define VOL_NORM 1.0 +/** + * Sound behavior constants + */ +#define SND_SPAWNING (1<<8) // we're spawing, used in some cases for ambients +#define SND_STOP (1<<5) // stop sound +#define SND_CHANGE_VOL (1<<6) // change sound vol +#define SND_CHANGE_PITCH (1<<7) // change sound pitch + /** * @endsection */ @@ -400,14 +408,6 @@ enum #define FP_STRING 2 #define FP_ARRAY 4 -/** - * Sound behavior constants - */ -#define SND_SPAWNING (1<<8) // we're spawing, used in some cases for ambients -#define SND_STOP (1<<5) // stop sound -#define SND_CHANGE_VOL (1<<6) // change sound vol -#define SND_CHANGE_PITCH (1<<7) // change sound pitch - /** * LibType constants */