aboutsummaryrefslogtreecommitdiff
path: root/Plugins/argument-passing.cpp
diff options
context:
space:
mode:
authorJuha Vehviläinen <jusu@users.sourceforge.net>2002-09-22 20:53:10 +0000
committerJuha Vehviläinen <jusu@users.sourceforge.net>2002-09-22 20:53:10 +0000
commit163a66302667158daef63e4a88a32002a5c1831a (patch)
tree3500e381fcdbada5db0cdcc7c8ad7b8967d4bcaa /Plugins/argument-passing.cpp
parent3bd43c9d18e565e193e555f9de0ce916f8faf807 (diff)
cleaned up compiler files (*.exp *.lib *.obj) from project / lightspeed-plugin
svn path=/trunk/Framestein/; revision=136
Diffstat (limited to 'Plugins/argument-passing.cpp')
-rw-r--r--Plugins/argument-passing.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Plugins/argument-passing.cpp b/Plugins/argument-passing.cpp
index 71ec33c..d89e8c1 100644
--- a/Plugins/argument-passing.cpp
+++ b/Plugins/argument-passing.cpp
@@ -1,5 +1,5 @@
//
-// example of passing arguments to plugin using the arguments-class (defined in pixels.h)
+// example of parsing arguments in a plugin using the arguments-class (defined in pixels.h)
//
#include "pixels.h"
@@ -10,7 +10,7 @@ void perform_effect(_frame f, _args a)
//
// ar.count() return the number of arguments
- // ar[i] return i'th argument
+ // ar[i] return i'th argument, starting from zero
//
for(int i=0; i<ar.count(); i++)