summaryrefslogtreecommitdiff
path: root/sndobj/Table.h
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
committerJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
commitce65c30264be9683dd3a59b35730d2f31e02d37f (patch)
tree90aaf2e77526af9ba099e76175956d0dd6a37633 /sndobj/Table.h
parentb46b988f164f983fc889c7bc0c96953e4609d27a (diff)
downloadsimpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.gz
simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.bz2
simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.zip
Changed from floats to doubles in the C/C++ code, makes Python integration a bit easier. Fixed a bug that would cause SndObjSynthesis to crash if peak values were floats.
Diffstat (limited to 'sndobj/Table.h')
-rw-r--r--sndobj/Table.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sndobj/Table.h b/sndobj/Table.h
index 6f0bede..f20a2bd 100644
--- a/sndobj/Table.h
+++ b/sndobj/Table.h
@@ -35,7 +35,7 @@ class Table {
protected:
long m_L; // size;
- float* m_table; // table
+ double* m_table; // table
int m_error; // error code
void ZeroTable ()
{
@@ -47,8 +47,8 @@ class Table {
public:
long GetLen() { return m_L; }
- float* GetTable(){ return m_table; }
- float Lookup(int pos){
+ double* GetTable(){ return m_table; }
+ double Lookup(int pos){
return m_table[pos%m_L];
}