summaryrefslogtreecommitdiff
path: root/src/decomp/expr/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/decomp/expr/array.c')
-rw-r--r--src/decomp/expr/array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decomp/expr/array.c b/src/decomp/expr/array.c
index 497e47a..c14374b 100644
--- a/src/decomp/expr/array.c
+++ b/src/decomp/expr/array.c
@@ -151,11 +151,11 @@ static void g_array_access_print(const GArrayAccess *expr, GCodeBuffer *buffer,
g_dec_instruction_print(G_DEC_INSTRUCTION(expr->array),
buffer, line, output);
- g_buffer_line_insert_text(line, BLC_ASSEMBLY, "[", 1, RTT_RAW);
+ g_buffer_line_insert_text(line, BLC_ASSEMBLY_HEAD, "[", 1, RTT_RAW);
g_dec_instruction_print(G_DEC_INSTRUCTION(expr->index),
buffer, line, output);
- g_buffer_line_insert_text(line, BLC_ASSEMBLY, "]", 1, RTT_RAW);
+ g_buffer_line_insert_text(line, BLC_ASSEMBLY_HEAD, "]", 1, RTT_RAW);
}