Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mgba-emu/mgba
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 318ccb2aa154ed1c705ffc196338043165afed1a
Choose a base ref
..
head repository: mgba-emu/mgba
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e4cc3c2f38d6a25fd9e9f72f2e05b911847aff9b
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/core/library.c
2 changes: 1 addition & 1 deletion src/core/library.c
Original file line number Diff line number Diff line change
@@ -37,7 +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) = :models 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"