From 797a9a563b2e90849bc6eb79169a9381896eeb15 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sun, 27 Apr 2014 00:58:59 -0400 Subject: music: Add loop point Ogg/Flac metadata support. ZDoom has defined a format for Vorbis metadata comments named LOOP_START and LOOP_END that allow the start and end points to be defined in .ogg and .flac files for looping music. Add support for these (they are used in Brandon Blume's SC-55 recordings). --- src/i_swap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/i_swap.h') diff --git a/src/i_swap.h b/src/i_swap.h index 065037a4..c1b11040 100644 --- a/src/i_swap.h +++ b/src/i_swap.h @@ -39,7 +39,7 @@ // of the macros in the original source and some code relies on it. #define SHORT(x) ((signed short) SDL_SwapLE16(x)) -#define LONG(x) ((signed long) SDL_SwapLE32(x)) +#define LONG(x) ((signed int) SDL_SwapLE32(x)) // Defines for checking the endianness of the system. -- cgit v1.2.3