Skip to content

Commit

Permalink
Add newlines for calibration printfs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-drexler committed Dec 27, 2023
1 parent 45b039a commit e091238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Quake/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -3073,7 +3073,7 @@ void M_Menu_Calibration_f (void)
IN_DeactivateForMenu();
m_state = m_calibration;
calibrationComplete = false;
Con_Printf("Calibrating, please wait...");
Con_Printf("Calibrating, please wait...\n");
StartCalibration();
}

Expand Down Expand Up @@ -3110,7 +3110,7 @@ called from in_sdl once calibration is finished
*/
void CalibrationFinishedCallback(void)
{
Con_Printf("Calibration finished");
Con_Printf("Calibration finished\n");
calibrationComplete = true;
calibrationCompleteTime = realtime;
}
Expand Down

0 comments on commit e091238

Please sign in to comment.