[profiler_capture_api] updated ProfilerRequests::StartCapture signature as per PR feedback

Signed-off-by: AMZN-ScottR <24445312+AMZN-ScottR@users.noreply.github.com>
This commit is contained in:
AMZN-ScottR
2021-10-25 15:51:12 -07:00
parent 471436b0fc
commit c6d3e7900c
3 changed files with 4 additions and 4 deletions
@@ -56,7 +56,7 @@ namespace AZ
virtual bool CaptureFrame(const AZStd::string& outputFilePath) = 0;
//! Starting/ending a multi-frame capture of profiling data
virtual bool StartCapture(const AZStd::string& outputFilePath) = 0;
virtual bool StartCapture(AZStd::string outputFilePath) = 0;
virtual bool EndCapture() = 0;
};
using ProfilerRequestBus = AZ::EBus<ProfilerRequests>;