zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 810948a262fec5c88decc6ac5be5abf9d0f32bcd
parent ce87b9cbfb6cc7dc2003c03293a1242cffc707a7
Author: fundamental <[email protected]>
Date:   Mon, 25 Jul 2011 01:48:21 -0400

Adding short argument to last commit

Diffstat:
Msrc/main.cpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main.cpp b/src/main.cpp @@ -307,10 +307,10 @@ int main(int argc, char *argv[]) while(1) { /**\todo check this process for a small memory leak*/ #if OS_LINUX || OS_CYGWIN - opt = getopt_long(argc, argv, "l:L:r:b:o:I:O:hSDUY", opts, &option_index); + opt = getopt_long(argc, argv, "l:L:r:b:o:I:O:N:hSDUY", opts, &option_index); char *optarguments = optarg; #elif OS_WINDOWS - opt = getopt(argc, argv, "l:L:r:b:o:I:O:hSDUY", &option_index); + opt = getopt(argc, argv, "l:L:r:b:o:I:O:N:hSDUY", &option_index); char *optarguments = &winoptarguments[0]; #else char *optarguments = NULL;