Home
last modified time | relevance | path

Searched refs:max_replay_files (Results 1 – 1 of 1) sorted by relevance

/dports/games/sdlpop/SDLPoP-1.22/src/
H A Dreplay.c183 int max_replay_files = 128; // initially, may grow if there are > 128 replay files found variable
196 …replay_list = malloc( max_replay_files * sizeof( replay_info_type ) ); // will realloc() later if … in list_replay_files()
208 if (num_replay_files > max_replay_files) { in list_replay_files()
210 max_replay_files += 128; in list_replay_files()
211 replay_list = realloc( replay_list, max_replay_files * sizeof( replay_info_type ) ); in list_replay_files()