Skip to content

Commit

Permalink
change in source to support initial arguments as float, fresh build
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Wolek authored and Nathan Wolek committed Jun 14, 2017
1 parent 848f7df commit f3a7d2a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions externals/define_loudspeakers.mxo/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleLongVersionString</key>
<string>define_loudspeakers .. - Copyright © 2017, Nathan Wolek. CC-BY-SA.</string>
<string>define_loudspeakers 1.1.beta2 - Copyright © 2017, Nathan Wolek. CC-BY-SA.</string>
<key>CFBundlePackageType</key>
<string>iLaX</string>
<key>CFBundleShortVersionString</key>
<string>..</string>
<string>1.1.beta2</string>
<key>CFBundleSignature</key>
<string>max2</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>..</string>
<string>1.1.beta2</string>
<key>CSResourcesFileMapped</key>
<true/>
<key>DTCompiler</key>
Expand Down
Binary file not shown.
6 changes: 3 additions & 3 deletions externals/vbap.mxo/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleLongVersionString</key>
<string>vbap .. - Copyright © 2017, Nathan Wolek. CC-BY-SA.</string>
<string>vbap 1.1.beta2 - Copyright © 2017, Nathan Wolek. CC-BY-SA.</string>
<key>CFBundlePackageType</key>
<string>iLaX</string>
<key>CFBundleShortVersionString</key>
<string>..</string>
<string>1.1.beta2</string>
<key>CFBundleSignature</key>
<string>max2</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>..</string>
<string>1.1.beta2</string>
<key>CSResourcesFileMapped</key>
<true/>
<key>DTCompiler</key>
Expand Down
Binary file modified externals/vbap.mxo/Contents/MacOS/vbap
Binary file not shown.
2 changes: 1 addition & 1 deletion source/projects/vbap/vbap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ int C74_EXPORT main(void)
{
t_class *c;

c = class_new("vbap", (method)vbap_new, 0L, (short)sizeof(t_vbap), 0L, A_DEFLONG,A_DEFLONG, 0);
c = class_new("vbap", (method)vbap_new, 0L, (short)sizeof(t_vbap), 0L, A_DEFFLOAT,A_DEFFLOAT, 0);

class_addmethod(c, (method)vbap_bang, "bang", 0);
class_addmethod(c, (method)vbap_float, "float", A_FLOAT, 0);
Expand Down

0 comments on commit f3a7d2a

Please sign in to comment.