BearishSun 8 лет назад
Родитель
Сommit
a4ee926e08

+ 2 - 2
Source/BansheeCore/Include/BsProfilerGPU.h

@@ -9,8 +9,8 @@
 namespace bs
 {
 	/** @addtogroup Profiling
-	*  @{
-	*/
+	 *  @{
+	 */
 
 	/** Contains various profiler statistics about a single GPU profiling sample. */
 	struct GPUProfileSample

+ 1 - 1
Source/BansheeCore/Source/BsProfilerGPU.cpp

@@ -95,7 +95,7 @@ namespace bs
 		if (mReportCount == 0)
 			BS_EXCEPT(InvalidStateException, "No reports are available.")
 
-			GPUProfilerReport report = mReadyReports[mReportHeadPos];
+		GPUProfilerReport report = mReadyReports[mReportHeadPos];
 
 		mReportHeadPos = (mReportHeadPos + 1) % MAX_QUEUE_ELEMENTS;
 		mReportCount--;