diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FBitmap.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FBitmap.h index 0e97440538..6443633245 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FBitmap.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FBitmap.h @@ -26,7 +26,7 @@ namespace AZ int Create(int width, int height); int Release(); - int SaveBitmap(const string& fileName); + int SaveBitmap(const AZStd::string& fileName); int Get32Bpp(unsigned int** buffer) { (*buffer) = new unsigned int[m_width * m_height]; diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp index 02cbb5a7a4..e3be52965c 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp @@ -11,7 +11,7 @@ #include //------------------------------------------------------------------------------------------------- -int AZ::FontTexture::WriteToFile([[maybe_unused]] const string& fileName) +int AZ::FontTexture::WriteToFile([[maybe_unused]] const AZStd::string& fileName) { return 1; }