@@ -4116,16 +4116,16 @@ typedef struct ecs_world_info_t {
4116
4116
ecs_ftime_t world_time_total; /* Time elapsed in simulation */
4117
4117
ecs_ftime_t world_time_total_raw; /* Time elapsed in simulation (no scaling) */
4118
4118
4119
- int32_t frame_count_total; /* Total number of frames */
4120
- int32_t merge_count_total; /* Total number of merges */
4119
+ int64_t frame_count_total; /* Total number of frames */
4120
+ int64_t merge_count_total; /* Total number of merges */
4121
4121
4122
- int32_t id_create_total; /* Total number of times a new id was created */
4123
- int32_t id_delete_total; /* Total number of times an id was deleted */
4124
- int32_t table_create_total; /* Total number of times a table was created */
4125
- int32_t table_delete_total; /* Total number of times a table was deleted */
4126
- int32_t pipeline_build_count_total; /* Total number of pipeline builds */
4127
- int32_t systems_ran_frame; /* Total number of systems ran in last frame */
4128
- int32_t observers_ran_frame; /* Total number of times observer was invoked */
4122
+ int64_t id_create_total; /* Total number of times a new id was created */
4123
+ int64_t id_delete_total; /* Total number of times an id was deleted */
4124
+ int64_t table_create_total; /* Total number of times a table was created */
4125
+ int64_t table_delete_total; /* Total number of times a table was deleted */
4126
+ int64_t pipeline_build_count_total; /* Total number of pipeline builds */
4127
+ int64_t systems_ran_frame; /* Total number of systems ran in last frame */
4128
+ int64_t observers_ran_frame; /* Total number of times observer was invoked */
4129
4129
4130
4130
int32_t id_count; /* Number of ids in the world (excluding wildcards) */
4131
4131
int32_t tag_id_count; /* Number of tag (no data) ids in the world */
@@ -4142,17 +4142,17 @@ typedef struct ecs_world_info_t {
4142
4142
4143
4143
/* -- Command counts -- */
4144
4144
struct {
4145
- int32_t add_count; /* add commands processed */
4146
- int32_t remove_count; /* remove commands processed */
4147
- int32_t delete_count; /* delete commands processed */
4148
- int32_t clear_count; /* clear commands processed */
4149
- int32_t set_count; /* set commands processed */
4150
- int32_t get_mut_count; /* get_mut/emplace commands processed */
4151
- int32_t modified_count; /* modified commands processed */
4152
- int32_t other_count; /* other commands processed */
4153
- int32_t discard_count; /* commands discarded, happens when entity is no longer alive when running the command */
4154
- int32_t batched_entity_count; /* entities for which commands were batched */
4155
- int32_t batched_command_count; /* commands batched */
4145
+ int64_t add_count; /* add commands processed */
4146
+ int64_t remove_count; /* remove commands processed */
4147
+ int64_t delete_count; /* delete commands processed */
4148
+ int64_t clear_count; /* clear commands processed */
4149
+ int64_t set_count; /* set commands processed */
4150
+ int64_t get_mut_count; /* get_mut/emplace commands processed */
4151
+ int64_t modified_count; /* modified commands processed */
4152
+ int64_t other_count; /* other commands processed */
4153
+ int64_t discard_count; /* commands discarded, happens when entity is no longer alive when running the command */
4154
+ int64_t batched_entity_count; /* entities for which commands were batched */
4155
+ int64_t batched_command_count; /* commands batched */
4156
4156
} cmd;
4157
4157
4158
4158
const char *name_prefix; /* Value set by ecs_set_name_prefix. Used
0 commit comments