Use std::filesystem::path for playback path

This commit is contained in:
Georg Hagen
2025-03-02 19:51:57 +01:00
parent c2c19b6383
commit 950c66f5c8
5 changed files with 12 additions and 11 deletions

View File

@@ -57,7 +57,7 @@ namespace OpenVulkano::AR
return { nullptr, ArCreateResult::FAILED_UNKNOWN, "Unknown exception while initializing AR system." };
}
ArCreateResult ArSession::CreatePlayback(const std::string& recordingPath, bool autoAdvance, bool loadImages, bool loadDepth)
ArCreateResult ArSession::CreatePlayback(const std::filesystem::path& recordingPath, bool autoAdvance, bool loadImages, bool loadDepth)
{
try
{