view build_nightly @ 2005:3ce38692a3f2

Set initial pan bits in YM2612 register array and not just the separate lr field of the channel. This fixes an issue in which some channels would be silent in VGM log output
author Michael Pavone <pavone@retrodev.com>
date Sun, 11 Oct 2020 22:42:10 -0700
parents 8e3adc6264d3
children 866577a220e6
line wrap: on
line source

#!/bin/sh

set -e

build_user=$1
needsu=$2
if [ "$needsu" = needsu ]; then
	su $build_user -c "$0 $1";
	exit
fi

cd /home/$build_user/blastem
hg revert -a
hg pull
hg up
rev=`hg summary |  sed -E -n 's/^parent: [^:]+:([^ ]+) .*$/\1/p'`
sed -i -E "s/(define BLASTEM_VERSION \"[^-]+)-pre\"/\1-pre-$rev\"/" blastem.c
./build_release