Skip to content

Commit

Permalink
fix crash report tickrate format
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeulater committed Oct 24, 2023
1 parent b9f451c commit 8f53de7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xlive/Blam/Engine/cseries/cseries_errors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ void setup_game_options_text(const wchar_t* reports_path)
print_bool_to_file(file, game_options->scenario_custom);

fwprintf(file, L"Game Tick Rate: ");
print_bool_to_file(file, game_options->game_tick_rate);
fwprintf(file, L"%d\n", game_options->game_tick_rate);

fwprintf(file, L"Random Data: ");
print_array_to_file(file, game_options->random_data, 8);
Expand Down

0 comments on commit 8f53de7

Please sign in to comment.