diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-10-16 23:55:39 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-10-16 23:55:39 (GMT) |
commit | f08d214e1b13bd56e0305e2e4ae511f6f7514195 (patch) | |
tree | bb307e7ad27c87b02d4b59b9a8bfc201e1b53392 /src/decomp | |
parent | 84581571e138d5b7984b6d3198296013ec157d30 (diff) |
Skipped documentation when computing line widths for rendering.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@270 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/decomp')
-rw-r--r-- | src/decomp/output.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/decomp/output.c b/src/decomp/output.c index 20e18a9..fd10921 100644 --- a/src/decomp/output.c +++ b/src/decomp/output.c @@ -270,7 +270,10 @@ GBufferLine *g_lang_output_start_routine_info(const GLangOutput *output, GCodeBu GBufferLine *result; /* Adresse nouvelle à remonter */ if (output->start_routine_proto != NULL) + { result = output->start_info(output, buffer); + g_buffer_line_skip_width(result); + } else result = NULL; |