๐Ÿ  Home ๐ŸŽฎ Games โ“ FAQ ๐Ÿ’ฌ Forum โฌ† Upload ๐Ÿ“ฌ Contact
๐ŸŽฒ Random Game

Reply to Re: Menu broken under DOSBox

The MENU6.EXE program here writes a batch file CHOICE.BAT which contains the user''s menu selection. MENU.BAT then runs CHOICE.BAT to start the program the user selected.&nbsp;<div><br></div><div>Unfortunately, DOSBox ignores CHOICE.BAT and runs it''s own CHOICE command, resulting in the ".bat [Y/N]?" prompt, followed by program exit.<div><br></div><div>To fix this, we just need to copy CHOICE.BAT to another filename and then run that file, thereby avoiding the name clash with CHOICE. Here''s a new MENU.BAT containing the fix:</div><div><br></div><div><div>echo off</div><div>menu6.exe</div><div>del run.bat</div><div>copy choice.bat run.bat</div><div>run.bat</div></div></div>

Subject:
Message:

0/1000 characters