diff --git a/P3D/Debug/DebugDisplay.vb b/P3D/Debug/DebugDisplay.vb index 6e375d2ff..636bf8635 100644 --- a/P3D/Debug/DebugDisplay.vb +++ b/P3D/Debug/DebugDisplay.vb @@ -31,11 +31,16 @@ Public Class DebugDisplay cameraInformation = Screen.Camera.Position.ToString() & thirdPersonString & Environment.NewLine & Screen.Camera.Yaw & "; " & Screen.Camera.Pitch & Environment.NewLine End If + Dim MapPath As String = "" + If Screen.Level IsNot Nothing Then + MapPath = Environment.NewLine & "MapPath: " & Screen.Level.LevelFile.ToString + End If Dim s As String = GameController.GAMENAME & " " & GameController.GAMEDEVELOPMENTSTAGE & " " & GameController.GAMEVERSION & " / FPS: " & Math.Round(Core.GameInstance.FPSMonitor.Value, 0) & isDebugString & Environment.NewLine & cameraInformation & "E: " & _drawnVertices.ToString() & "/" & _maxVertices.ToString() & Environment.NewLine & - "C: " & _maxDistance.ToString() & " A: " & ActionscriptActive.ToString() + "C: " & _maxDistance.ToString() & " A: " & ActionscriptActive.ToString() & + MapPath If Core.GameOptions.ContentPackNames.Count() > 0 Then Dim contentPackString As String = ""