[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Sc-devel] Main:stop minor CmdPeriod redundancy



Hi all,

 Main:stop calls TempoClock.default.clear, but this is also done by Meta_CmdPeriod.clear.
(This was probably left over from before CmdPeriod existed.) I am commenting this out.

stop { // called by command-.

SystemClock.clear;
AppClock.clear;
// TempoClock.default.clear;
CmdPeriod.clear;


Server.freeAll; // stop all sounds on local servers
Server.resumeThreads;
}


RJK