~vibhavp/ubuntu/saucy/csound/merge-from-debian

« back to all changes in this revision

Viewing changes to frontends/CsoundAC/Rescale.cpp

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2012-04-19 09:26:46 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20120419092646-j2x9xuiaxx57bmg0
Tags: 1:5.17.6~dfsg-1
* New upstream release
 - Do not build the wiimote opcodes (we need wiiuse).
* Add new API function to symbols file
* Disable lua opcodes, they were broken. Requires OpenMP to be enabled.
* Backport fixes from upstream:
  - Link dssi4cs with dl. Backport
  - Fix building of CsoundAC

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
  {
58
58
    for(int i = 0; i < Event::ELEMENT_COUNT; i++)
59
59
      {
60
 
        score_.setScale(score_, 
61
 
                        i, 
62
 
                        score.rescaleMinima[i], 
63
 
                        score.rescaleRanges[i], 
64
 
                        beginAt, 
65
 
                        endAt, 
66
 
                        score.scaleTargetMinima[i], 
 
60
        score_.setScale(score_,
 
61
                        i,
 
62
                        score.rescaleMinima[i],
 
63
                        score.rescaleRanges[i],
 
64
                        beginAt,
 
65
                        endAt,
 
66
                        score.scaleTargetMinima[i],
67
67
                        score.scaleTargetRanges[i]);
68
68
      }
69
69
  }