[Scummlinux-cvs-logs] scummlinux/generator LANGUAGE,1.1,1.2 generator.pl,1.1,1.2
Brought to you by:
yoshizf
From: <yo...@us...> - 2003-07-23 21:07:23
|
Update of /cvsroot/scummlinux/scummlinux/generator In directory sc8-pr-cvs1:/tmp/cvs-serv29022/generator Modified Files: LANGUAGE generator.pl Log Message: fixing language? Index: LANGUAGE =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/generator/LANGUAGE,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LANGUAGE 22 Jul 2003 15:33:13 -0000 1.1 --- LANGUAGE 23 Jul 2003 21:07:18 -0000 1.2 *************** *** 1 **** ! en --- 1,2 ---- ! fr ! Index: generator.pl =================================================================== RCS file: /cvsroot/scummlinux/scummlinux/generator/generator.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** generator.pl 23 Jul 2003 19:11:04 -0000 1.1 --- generator.pl 23 Jul 2003 21:07:18 -0000 1.2 *************** *** 62,65 **** --- 62,71 ---- copy("$file", "$gamesdest/$game/DATA"); } + @sounds = glob("$gamesloc/$game/monster*"); + foreach $sound (@sounds) { + #print "Copying $sound\n"; + copy("$sound", "$gamesdest/$game"); + } + } *************** *** 78,81 **** --- 84,95 ---- } + if ($game eq "simon1dos") { + @files = glob("$gamesloc/$game/*") or die("Missing files for the game $game\n"); + foreach $file (@files) { + copy("$file", "$gamesdest/$game"); + } + } + + if ($game eq "sky") { @files = ("sky.dnr", "sky.dsk", "sky.rst"); *************** *** 110,119 **** close(LANG); ! print scummvm "[scummvm] ! language=$language ! gfx_mode=advmame3x ! versioninfo=0.5.0pre-cvs ! fullscreen=true ! "; close(scummvm); --- 124,132 ---- close(LANG); ! print scummvm "[scummvm]\n"; ! print scummvm "language=$language"; ! print scummvm "gfx_mode=advmame3x\n"; ! print scummvm "versioninfo=0.5.0pre-cvs\n"; ! print scummvm "fullscreen=true\n"; close(scummvm); |