From: Carl Worth Date: Sun, 29 Sep 2013 21:56:47 +0000 (-0700) Subject: Fix scherzo to use pitch_t rather than score_note_t for computation X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=367e517451123c7c79ead28eca6d2489bfed6467;hp=367e517451123c7c79ead28eca6d2489bfed6467;p=scherzo Fix scherzo to use pitch_t rather than score_note_t for computation The score_note_t type is constructed as a side effect of performing drawing. This is a poor fit for scherzo's computation and reasoning since it often wants to perform analysis on notes that it has never drawn. Meanwhile, the new pitch_t is a simple integer, making it very easy for scherzo to use pitch_t in all of its calculations. The goal is for no functional changes with this commit, but we know that some bugs have likely been changed or moved around. ---