1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Allow selecting only subset of loaded objects for export

This commit is contained in:
Michał Janiszewski
2016-10-13 18:15:25 +02:00
parent 3a0e3c04e1
commit f3a2eb0247
2 changed files with 2 additions and 2 deletions

View File

@@ -689,7 +689,7 @@ int scenario_prepare_for_save()
*
* rct2: 0x006AA244
*/
int scenario_get_num_packed_objects_to_write()
int scenario_get_num_packed_objects_to_write(rct_object_entry * object_list)
{
int count = 0;
for (int i = 0; i < OBJECT_ENTRY_COUNT; i++) {

View File

@@ -417,7 +417,7 @@ unsigned int scenario_rand_max(unsigned int max);
int scenario_prepare_for_save();
int scenario_save(SDL_RWops* rw, int flags);
int scenario_save_network(SDL_RWops* rw);
int scenario_get_num_packed_objects_to_write();
int scenario_get_num_packed_objects_to_write(rct_object_entry *object_list);
int scenario_write_packed_objects(SDL_RWops* rw);
void scenario_remove_trackless_rides(rct_s6_data *s6);
void scenario_fix_ghosts(rct_s6_data *s6);