Skip to content

Commit

Permalink
clean up according to PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ahigerd committed Apr 28, 2023
1 parent e4a898b commit e4cc3c2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions src/core/library.c
Expand Up @@ -37,6 +37,7 @@ struct mLibrary {
#define CONSTRAINTS_ROMONLY \
"CASE WHEN :useSize THEN roms.size = :size ELSE 1 END AND " \
"CASE WHEN :usePlatform THEN roms.platform = :platform ELSE 1 END AND " \
"CASE WHEN :useModels THEN roms.models & :models ELSE 1 END AND " \
"CASE WHEN :useCrc32 THEN roms.crc32 = :crc32 ELSE 1 END AND " \
"CASE WHEN :useInternalCode THEN roms.internalCode = :internalCode ELSE 1 END"

Expand Down Expand Up @@ -98,7 +99,9 @@ static void _bindConstraints(sqlite3_stmt* statement, const struct mLibraryEntry
}

if (constraints->platformModels != M_LIBRARY_MODEL_UNKNOWN) {
useIndex = sqlite3_bind_parameter_index(statement, ":useModels");
index = sqlite3_bind_parameter_index(statement, ":models");
sqlite3_bind_int(statement, useIndex, 1);
sqlite3_bind_int(statement, index, constraints->platformModels);
}
}
Expand Down Expand Up @@ -183,8 +186,8 @@ struct mLibrary* mLibraryLoad(const char* path) {
goto error;
} else if (romsTableVersion < 2) {
static const char upgradeRomsTable[] =
" ALTER TABLE roms"
"\nADD COLUMN models INTEGER NULL";
" ALTER TABLE roms"
"\n ADD COLUMN models INTEGER NULL";
if (sqlite3_exec(library->db, upgradeRomsTable, NULL, NULL, NULL)) {
goto error;
}
Expand Down
2 changes: 1 addition & 1 deletion src/platform/qt/CMakeLists.txt
Expand Up @@ -525,6 +525,6 @@ if(BUILD_SUITE)
add_test(platform-qt-${TEST_NAME} test-qt-${TEST_NAME})
endforeach()
else()
message("${QT}Test not found")
message(WARNING "${QT}Test not found")
endif()
endif()

0 comments on commit e4cc3c2

Please sign in to comment.