Attempted fix for MSVC parser.

This commit is contained in:
n-a-c-h
2005-04-02 21:51:26 +00:00
parent 094b5ba3a3
commit be1bbf0f83

View File

@@ -63,9 +63,9 @@ ASM_COMMAND(popal) \
#else //MSVC
#define asm_call(func) _asm pushad \
#define asm_call(func) { _asm pushad \
_asm call func \
_asm popad
_asm popad };
#endif