I'm trying to understand some dosbox.conf files for some games I have and would like to play on linux I noticed in the [autoexec] part have some lines are either prefixed with '@' or not and I don't understand what this prefix is used for
two examples : Game 1
[autoexec]
cd ..
@cd ..
@mount c .\games\
imgmount d .\games\baris\cd\BARIS.cue -t cdrom
@c:
cls
@cd baris
@call buzz
exit
Game 2
[autoexec]
cd ..
cd ..
mount c .\games\WackyWhe
imgmount d .\games\WackyWhe\cd\wackywheels.iso -t cdrom
c:
cd wacky
cls
@ww
exit
In that second example only one line has the @prefix and the ww correspond to the main executable file of the game, and the game launch so this isn't a comment (which seems to use #)
so what is the difference between @ww and ww ?
or between
@cd baris
@call buzz
and
cd baris
call buzz
?
Is it purely DosBox syntax or plain dos/cmd ?