Fix build error in MemoryReader.cpp

This commit is contained in:
Luke S 2019-12-10 16:41:05 -05:00 committed by GitHub
parent eb41d349dc
commit dcc85e38ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ void MemoryReader::seek(atInt64 position, SeekOrigin origin) {
if (((atInt64(m_position) + position) < 0 || (m_position + atUint64(position)) > m_length)) {
if (m_globalErr)
atFatal(fmt("Position {:08X} outside stream bounds "), position);
m_position = (position < 0 ? 0 ? m_length;
m_position = (position < 0 ? 0 : m_length);
setError();
return;
}