view src/hermes/common.inc @ 4316:7b27a7fc4fdf SDL-1.2

Disable double buffer for Milan. Also set current width,height after we read it.
author Patrice Mandin <patmandin@gmail.com>
date Sat, 10 Oct 2009 10:28:05 +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