diff options
author | Florian Jung <flo@thinkpad.(none)> | 2011-01-08 18:27:40 +0100 |
---|---|---|
committer | Florian Jung <flo@thinkpad.(none)> | 2011-01-08 18:27:40 +0100 |
commit | d84da6cdfb9027a67b8ab50fe2c23374acc3b245 (patch) | |
tree | 36fe2b669da46e0e320a03e4f18c3a25c743107d /note_compiler/parser.cpp | |
parent | 82e74a33661d235029f413eff2b21c4e29e057bc (diff) |
Added some of the bugfixes to the note_compiler and removed use_pfactor
Diffstat (limited to 'note_compiler/parser.cpp')
-rw-r--r-- | note_compiler/parser.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/note_compiler/parser.cpp b/note_compiler/parser.cpp index 17c197f..b15b981 100644 --- a/note_compiler/parser.cpp +++ b/note_compiler/parser.cpp @@ -126,8 +126,6 @@ program_t parse(string fn) fixed_t sync_factor=0; bool sync_factor_const=true; - bool use_pfactor=true; //TODO FINDMICH war false - char buf[2000]; string line; string var; @@ -358,7 +356,6 @@ program_t parse(string fn) default: // other params than the above may not be influenced! throw string("velocity cannot influence parameter '"+array+"'"); } - use_pfactor=true; } @@ -475,7 +472,6 @@ program_t parse(string fn) result.filter=filter; result.sync_factor=sync_factor; result.sync_factor_const=sync_factor_const; - result.use_pfactor=use_pfactor; } else throw string ("could not open '"+fn+"'"); |