Sequencer: Cleanup prototypes.

This commit is contained in:
Jonathan Moore Liles 2013-05-06 23:31:29 -07:00
parent b8184ac910
commit 6e776faf24
1 changed files with 4 additions and 4 deletions

View File

@ -160,8 +160,8 @@ public:
int y_to_note ( int y ) const; int y_to_note ( int y ) const;
int note_to_y ( int n ) const; int note_to_y ( int n ) const;
tick_t x_to_ts ( tick_t x ) const; tick_t x_to_ts ( unsigned long x ) const;
tick_t ts_to_x ( tick_t ts ) const; unsigned long ts_to_x ( tick_t ts ) const;
virtual Grid * create ( void ) = 0; virtual Grid * create ( void ) = 0;
virtual Grid * clone ( void ) = 0; virtual Grid * clone ( void ) = 0;
@ -258,14 +258,14 @@ Grid::note_to_y ( int n ) const
} }
inline tick_t inline tick_t
Grid::x_to_ts ( tick_t x ) const Grid::x_to_ts ( unsigned long x ) const
{ {
return (x * PPQN) / _ppqn; return (x * PPQN) / _ppqn;
// return x * (PPQN / _ppqn); // return x * (PPQN / _ppqn);
} }
inline tick_t inline unsigned long
Grid::ts_to_x ( tick_t ts ) const Grid::ts_to_x ( tick_t ts ) const
{ {
return (ts * _ppqn) / PPQN; return (ts * _ppqn) / PPQN;