1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-12-07 21:34:33 +00:00

Fix error message

This commit is contained in:
elsid 2025-10-05 14:46:17 +02:00
parent cfd7f52a2f
commit d171915b6a
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625

View file

@ -100,7 +100,7 @@ namespace Sqlite3
{
if (type != SQLITE_NULL)
throw std::logic_error("Type of column " + std::to_string(index) + " is " + sqliteTypeToString(type)
+ " that does not match expected output type: SQLITE_INTEGER or SQLITE_FLOAT");
+ " that does not match expected output type: SQLITE_NULL");
value = nullptr;
}