diff options
author | Thilo Schulz <arny@ats.s.bawue.de> | 2011-09-19 15:49:45 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-10 23:38:26 +0000 |
commit | 25f3ade903fa4361d240c98dadbee5f3b5f5c6a3 (patch) | |
tree | 56bc00e0d806b0ce98a68c9a3f39a2174764d236 /src/asm | |
parent | 8039591c1467019df232a5d857adfc2566038547 (diff) |
Fix missing return instruction for fpu ftol on msvc. Thanks to Ensiform for reporting.
Diffstat (limited to 'src/asm')
-rw-r--r-- | src/asm/snapvector.asm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/asm/snapvector.asm b/src/asm/snapvector.asm index eca40fe1..acfb7930 100644 --- a/src/asm/snapvector.asm +++ b/src/asm/snapvector.asm @@ -100,6 +100,7 @@ ELSE qroundx87 8[eax] fldcw [esp] add esp, 2 + ret qsnapvectorx87 ENDP ENDIF |