@@ -458,14 +458,15 @@ const char* basic_eval_str_fn(const char* fn_name, struct basic_ctx* ctx)
458458 }
459459 }
460460
461- ctx -> int_variables = atomic -> int_variables ;
462- ctx -> str_variables = atomic -> str_variables ;
463- ctx -> double_variables = atomic -> double_variables ;
464- ctx -> sounds = atomic -> sounds ;
465- ctx -> data_offset = atomic -> data_offset ;
466- ctx -> graphics_colour = atomic -> graphics_colour ;
467- ctx -> active_restrictions = atomic -> active_restrictions ;
468- ctx -> child_restrictions = atomic -> child_restrictions ;
461+ ctx -> int_variables = atomic -> int_variables ;
462+ ctx -> str_variables = atomic -> str_variables ;
463+ ctx -> double_variables = atomic -> double_variables ;
464+ ctx -> sounds = atomic -> sounds ;
465+ ctx -> data_offset = atomic -> data_offset ;
466+ ctx -> graphics_colour = atomic -> graphics_colour ;
467+ ctx -> active_restrictions = atomic -> active_restrictions ;
468+ ctx -> child_restrictions = atomic -> child_restrictions ;
469+ ctx -> string_gc_storage_size = atomic -> string_gc_storage_size ;
469470
470471 memcpy (ctx -> audio_streams , atomic -> audio_streams , sizeof (ctx -> audio_streams ));
471472 memcpy (ctx -> envelopes , atomic -> envelopes , sizeof (ctx -> envelopes ));
@@ -614,14 +615,15 @@ int64_t basic_eval_int_fn(const char* fn_name, struct basic_ctx* ctx)
614615 }
615616 rv = (int64_t )atomic -> fn_return ;
616617
617- ctx -> int_variables = atomic -> int_variables ;
618- ctx -> str_variables = atomic -> str_variables ;
619- ctx -> double_variables = atomic -> double_variables ;
620- ctx -> sounds = atomic -> sounds ;
621- ctx -> data_offset = atomic -> data_offset ;
622- ctx -> graphics_colour = atomic -> graphics_colour ;
623- ctx -> active_restrictions = atomic -> active_restrictions ;
624- ctx -> child_restrictions = atomic -> child_restrictions ;
618+ ctx -> int_variables = atomic -> int_variables ;
619+ ctx -> str_variables = atomic -> str_variables ;
620+ ctx -> double_variables = atomic -> double_variables ;
621+ ctx -> sounds = atomic -> sounds ;
622+ ctx -> data_offset = atomic -> data_offset ;
623+ ctx -> graphics_colour = atomic -> graphics_colour ;
624+ ctx -> active_restrictions = atomic -> active_restrictions ;
625+ ctx -> child_restrictions = atomic -> child_restrictions ;
626+ ctx -> string_gc_storage_size = atomic -> string_gc_storage_size ;
625627
626628 memcpy (ctx -> audio_streams , atomic -> audio_streams , sizeof (ctx -> audio_streams ));
627629 memcpy (ctx -> envelopes , atomic -> envelopes , sizeof (ctx -> envelopes ));
@@ -693,14 +695,15 @@ void basic_eval_double_fn(const char* fn_name, struct basic_ctx* ctx, double* re
693695 * res = * ((double * )atomic -> fn_return );
694696 }
695697
696- ctx -> int_variables = atomic -> int_variables ;
697- ctx -> str_variables = atomic -> str_variables ;
698- ctx -> double_variables = atomic -> double_variables ;
699- ctx -> sounds = atomic -> sounds ;
700- ctx -> data_offset = atomic -> data_offset ;
701- ctx -> graphics_colour = atomic -> graphics_colour ;
702- ctx -> active_restrictions = atomic -> active_restrictions ;
703- ctx -> child_restrictions = atomic -> child_restrictions ;
698+ ctx -> int_variables = atomic -> int_variables ;
699+ ctx -> str_variables = atomic -> str_variables ;
700+ ctx -> double_variables = atomic -> double_variables ;
701+ ctx -> sounds = atomic -> sounds ;
702+ ctx -> data_offset = atomic -> data_offset ;
703+ ctx -> graphics_colour = atomic -> graphics_colour ;
704+ ctx -> active_restrictions = atomic -> active_restrictions ;
705+ ctx -> child_restrictions = atomic -> child_restrictions ;
706+ ctx -> string_gc_storage_size = atomic -> string_gc_storage_size ;
704707
705708 memcpy (ctx -> audio_streams , atomic -> audio_streams , sizeof (ctx -> audio_streams ));
706709 memcpy (ctx -> envelopes , atomic -> envelopes , sizeof (ctx -> envelopes ));
0 commit comments