korell: Done it. Edited the autoexec commands in the conf file as below, and now I get a menu choice when launching that lets me choose which graphics set to use. Note that I made copies of the LEVEL0.DAT and LEVEL1.DAT called LEVEL_OR.DAT and LEVEL_PL.DAT (for Original and Promised Lands repectively). On making the choice, the files are copied to the appropriate numbers and the game launched. Works a treat. :)
[autoexec]
# Lines in this section will be run at startup.
@echo off
mount C ..\POP
c:
cls
ECHO [42;1mÉÍÍÍÍÍÍÍÍÍÍÍÍ ;ÍÍÍÍÍÍÍÍÍÍÍÍÍ&Iacu te;ÍÍÍÍÍÍÍÍÍ»
ECHO º --------------------------------- º
ECHO º Populous and Promised Lands º
ECHO º --------------------------------- º
ECHO º 1) Standard Graphics º
ECHO º 2) Promised Lands Graphics º
ECHO º --------------------------------- º
ECHO º 3) Exit Program º
ECHO º --------------------------------- º
ECHO ÈÍÍÍÍÍÍÍÍÍÍÍÍ&Iacut e;ÍÍÍÍÍÍÍÍÍÍÍÍÍ&Iac ute;ÍÍÍÍÍÍÍͼ[0m
choice /c123 /s Which graphics do you want to use? [1-3]: /n
if errorlevel 3 goto exit
if errorlevel 2 goto e2
if errorlevel 1 goto e1
:e1
@echo off
copy c:\DATA\LEVEL_OR.DAT c:\DATA\LEVEL0.DAT /y
copy c:\DATA\LEVEL_PL.DAT c:\DATA\LEVEL1.DAT /y
populous Vga Roland MT-32
exit
:e2
@echo off
copy c:\DATA\LEVEL_OR.DAT c:\DATA\LEVEL1.DAT /y
copy c:\DATA\LEVEL_PL.DAT c:\DATA\LEVEL0.DAT /y
populous Vga Roland MT-32
exit
:exit
exit
What do you type in place of Roland MT-32 if you want Sound Blaster or Adlib instead?