aboutsummaryrefslogtreecommitdiff
path: root/sokol_args.h
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2018-10-13 18:44:50 +0200
committerAndre Weissflog <floooh@gmail.com>2018-10-13 18:44:50 +0200
commitf80fcc360e3f93cfa34732077535306ccaf928b6 (patch)
treeb152fd499ce2f4b54b5c93980748a9e3a79b6763 /sokol_args.h
parent0d33015ebffc20aa7821054d4135b05c4117834e (diff)
minor fix in sokol_args.h
Diffstat (limited to 'sokol_args.h')
-rw-r--r--sokol_args.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sokol_args.h b/sokol_args.h
index d6a8fcb4..138b0091 100644
--- a/sokol_args.h
+++ b/sokol_args.h
@@ -341,7 +341,7 @@ _SOKOL_PRIVATE bool _sargs_parse_carg(const char* src) {
}
}
if (c >= 32) {
- _sargs.buf[_sargs.buf_pos++] = c;
+ _sargs_putc(c);
}
}
if (_sargs_parsing_key()) {