You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/// sv6_add_map()
|
|
var list, str_list;
|
|
list = ds_list_create();
|
|
i = 0;
|
|
repeat (80) {
|
|
j = 0;
|
|
repeat (80) {
|
|
ds_list_add(list, global.dmap[i, j]);
|
|
j += 1;
|
|
}
|
|
i += 1;
|
|
}
|
|
str_list = ds_list_write(list);
|
|
ds_list_clear(list);
|
|
return str_list;
|