Some sandbox references I was missing

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-06-29 16:54:30 -07:00
parent d14229c67e
commit d6caff7842
5 changed files with 5 additions and 5 deletions
@@ -34,7 +34,7 @@ namespace LevelBuilder
AZ::u64 readXmlDataLength(AZ::IO::GenericStream* stream, int& charSize)
{
// This code is replicated from readStringLength method found in .\dev\Code\Sandbox\Editor\Util\EditorUtils.h file
// This code is replicated from readStringLength method found in .\dev\Code\Editor\Util\EditorUtils.h file
// such that we do not have any Cry or Qt related dependencies.
// The basic algorithm is that it reads in an 8 bit int, and if the length is less than 2^8,
// then that's the length. Next it reads in a 16 bit int, and if the length is less than 2^16,