diff options
author | Lunar Journal <md.node.0@gmail.com> | 2023-09-06 17:00:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-06 17:00:45 +0200 |
commit | ac51a6dcf0952c477ee62e544df1daa6aa5c16ef (patch) | |
tree | d45e4b1bed56a3115a4bd2df8271ef2d7e59d56e | |
parent | 9f015f7fb6b7f62fd1d1a18989b17dc61e3f90df (diff) | |
download | emu8910-ac51a6dcf0952c477ee62e544df1daa6aa5c16ef.tar.gz emu8910-ac51a6dcf0952c477ee62e544df1daa6aa5c16ef.zip |
emu8910: parser: Update module list.
Update song list for new FYM module.
-rw-r--r-- | parser.js | 14 |
1 files changed, 2 insertions, 12 deletions
@@ -2,20 +2,10 @@ var song;
var emu8910 = new PSG49(YM_CLOCK_ZX, 50);
- Array.prototype.shuffle = function() {
- var m = this.length, t, i;
- while(m) {
- i = Math.floor(Math.random() * m--);
- t = this[m];
- this[m] = this[i];
- this[i] = t;
- }
- return this;
- }
-
var songs = [
+ "18_soundliner.fym",
"01_scalesmannmisfire.fym"
- ].shuffle();
+ ];
var currentSong = 0;
|