Browse Source

Minor fixes

pull/3/head v2.8.3
Wayne Warthen 9 years ago
parent
commit
4fdb89d651
  1. 7
      Source/Apps/Mode.asm
  2. 4
      Source/Doc/Build.cmd

7
Source/Apps/Mode.asm

@ -365,11 +365,16 @@ comsetu:
jr comsetx ; common exit jr comsetx ; common exit
; ;
comsetx: comsetx:
ld a,(pflag) ; get prompt flag
or a ; set flags
jr z,comsetx2 ; bypass if not requested
comsetx1:
ld c,$01 ; console read ld c,$01 ; console read
call bdos ; do it call bdos ; do it
cp $0D ; CR? cp $0D ; CR?
jr nz,comsetx ; loop as needed
jr nz,comsetx1 ; loop as needed
; ;
comsetx2:
xor a xor a
ret ret
; ;

4
Source/Doc/Build.cmd

@ -2,5 +2,5 @@
setlocal setlocal
setlocal & cd "ZCPR Manual" && call Build.cmd || exit /b 1 & endlocal setlocal & cd "ZCPR Manual" && call Build.cmd || exit /b 1 & endlocal
setlocal & cd "RomWBW User Guide" && call Build.cmd || exit /b 1 & endlocal
setlocal & cd "RomWBW System Guide" && call Build.cmd || exit /b 1 & endlocal
rem setlocal & cd "RomWBW User Guide" && call Build.cmd || exit /b 1 & endlocal
rem setlocal & cd "RomWBW System Guide" && call Build.cmd || exit /b 1 & endlocal
Loading…
Cancel
Save