view src/hermes/common.inc @ 4402:ed7b8e3520b5 SDL-1.2

Fixed channel swizzling for ALSA target with 6-channel output. Fixes Bugzilla #942.
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 12 Feb 2010 16:59:34 +0000
parents d76c3909b244
children
line wrap: on
line source

; Some common macros for hermes nasm code

%macro SDL_FUNC 1
%ifdef HIDDEN_VISIBILITY
GLOBAL %1:function hidden
%else
GLOBAL %1
%endif
%endmacro