From e99ff4819a25289ca150fd0d48097c2bea99de6c Mon Sep 17 00:00:00 2001 From: n-a-c-h <> Date: Tue, 28 Mar 2006 21:11:07 +0000 Subject: [PATCH] Fixed DOS compiling. --- zsnes/src/video/procvid.asm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/zsnes/src/video/procvid.asm b/zsnes/src/video/procvid.asm index 608c0726..6e5a190e 100644 --- a/zsnes/src/video/procvid.asm +++ b/zsnes/src/video/procvid.asm @@ -46,9 +46,6 @@ EXTSYM MouseMoveX,MouseMoveY,MouseButtons,MultiMouseProcess,mouse EXTSYM SB_blank,vsyncon,Triplebufen,granadd %endif -%include "video/2xsaimmx.inc" -%include "video/copyvid.inc" - SECTION .bss NEWSYM ScreenScale, resb 1 ; If horizontal is scaled or not NEWSYM TempDebugV, resw 1 ; Temporary Debugging variable @@ -68,6 +65,11 @@ SECTION .text SECTION .text +%ifdef __MSDOS__ +%include "video/2xsaimmx.inc" +%endif +%include "video/copyvid.inc" + ;******************************************************* ; ShowVideo Processes & displays video ;*******************************************************