Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-08-02 17:55:27 -07:00
parent 58f1cb9b6c
commit ad14d9cdd7
2 changed files with 2 additions and 2 deletions
@@ -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];
@@ -11,7 +11,7 @@
#include <AtomLyIntegration/AtomFont/FontTexture.h>
//-------------------------------------------------------------------------------------------------
int AZ::FontTexture::WriteToFile([[maybe_unused]] const string& fileName)
int AZ::FontTexture::WriteToFile([[maybe_unused]] const AZStd::string& fileName)
{
return 1;
}