cleanup: Remove a debug print.
Some checks failed
Build Tilde Friends / Build-All (push) Has been cancelled

This commit is contained in:
Cory McWilliams 2024-12-29 13:34:51 -05:00
parent eca8726909
commit 98275f7c87

View File

@ -2020,7 +2020,6 @@ bool tf_ssb_db_get_global_setting_bool(sqlite3* db, const char* name, bool* out_
{
if (sqlite3_step(statement) == SQLITE_ROW && sqlite3_column_type(statement, 0) != SQLITE_NULL)
{
tf_printf("have row for %s: %d\n", name, sqlite3_column_int(statement, 0));
*out_value = sqlite3_column_int(statement, 0) != 0;
result = true;
}