diff -Nru mgba-0.7~b1+dfsg1-r201902181131-830e52f/CHANGES mgba-0.7~b1+dfsg1-r201902191131-0d178a4/CHANGES --- mgba-0.7~b1+dfsg1-r201902181131-830e52f/CHANGES 2019-02-18 11:31:34.000000000 +0000 +++ mgba-0.7~b1+dfsg1-r201902191131-0d178a4/CHANGES 2019-02-19 11:31:37.000000000 +0000 @@ -8,6 +8,7 @@ - Qt: Fix audio context holding onto closed game controller - Switch: Fix gyroscope orientation (fixes mgba.io/i/1300) - GBA SIO: Prevent writing read-only multiplayer bits + - Qt: Fix color picking in sprite view (fixes mgba.io/i/1307) Misc: - GBA Video: Improve sprite cycle counting (fixes mgba.io/i/1274) diff -Nru mgba-0.7~b1+dfsg1-r201902181131-830e52f/debian/changelog mgba-0.7~b1+dfsg1-r201902191131-0d178a4/debian/changelog --- mgba-0.7~b1+dfsg1-r201902181131-830e52f/debian/changelog 2019-02-18 11:31:37.000000000 +0000 +++ mgba-0.7~b1+dfsg1-r201902191131-0d178a4/debian/changelog 2019-02-19 11:31:40.000000000 +0000 @@ -1,8 +1,8 @@ -mgba (0.7~b1+dfsg1-r201902181131-830e52f-15~ubuntu18.04.1) bionic; urgency=low +mgba (0.7~b1+dfsg1-r201902191131-0d178a4-15~ubuntu18.04.1) bionic; urgency=low * Auto build. - -- Launchpad Package Builder Mon, 18 Feb 2019 11:31:37 +0000 + -- Launchpad Package Builder Tue, 19 Feb 2019 11:31:40 +0000 mgba (0.7~b1+dfsg1-1) unstable; urgency=low diff -Nru mgba-0.7~b1+dfsg1-r201902181131-830e52f/debian/git-build-recipe.manifest mgba-0.7~b1+dfsg1-r201902191131-0d178a4/debian/git-build-recipe.manifest --- mgba-0.7~b1+dfsg1-r201902181131-830e52f/debian/git-build-recipe.manifest 2019-02-18 11:31:37.000000000 +0000 +++ mgba-0.7~b1+dfsg1-r201902191131-0d178a4/debian/git-build-recipe.manifest 2019-02-19 11:31:40.000000000 +0000 @@ -1,3 +1,3 @@ -# git-build-recipe format 0.4 deb-version {debupstream}-r201902181131-830e52f-15 -lp:mgba git-commit:830e52fa67803d3d4506948d4c8888e1e8eea586 +# git-build-recipe format 0.4 deb-version {debupstream}-r201902191131-0d178a4-15 +lp:mgba git-commit:0d178a4c3f1a902dcfb460b4b55bbba207cbf428 nest packaging lp:~random-stuff/mgba/+git/mgba-debian debian git-commit:42c46c786e3a4359a7bc6754b459abc8ba854e0a diff -Nru mgba-0.7~b1+dfsg1-r201902181131-830e52f/.pc/.quilt_patches mgba-0.7~b1+dfsg1-r201902191131-0d178a4/.pc/.quilt_patches --- mgba-0.7~b1+dfsg1-r201902181131-830e52f/.pc/.quilt_patches 2019-02-18 11:31:37.000000000 +0000 +++ mgba-0.7~b1+dfsg1-r201902191131-0d178a4/.pc/.quilt_patches 2019-02-19 11:31:40.000000000 +0000 @@ -1 +1 @@ -/home/buildd/build-RECIPEBRANCHBUILD-2041842/chroot-autobuild/home/buildd/work/tree/recipe/debian/patches +/home/buildd/build-RECIPEBRANCHBUILD-2042457/chroot-autobuild/home/buildd/work/tree/recipe/debian/patches diff -Nru mgba-0.7~b1+dfsg1-r201902181131-830e52f/.pc/.quilt_series mgba-0.7~b1+dfsg1-r201902191131-0d178a4/.pc/.quilt_series --- mgba-0.7~b1+dfsg1-r201902181131-830e52f/.pc/.quilt_series 2019-02-18 11:31:37.000000000 +0000 +++ mgba-0.7~b1+dfsg1-r201902191131-0d178a4/.pc/.quilt_series 2019-02-19 11:31:40.000000000 +0000 @@ -1 +1 @@ -/home/buildd/build-RECIPEBRANCHBUILD-2041842/chroot-autobuild/home/buildd/work/tree/recipe/debian/patches/series +/home/buildd/build-RECIPEBRANCHBUILD-2042457/chroot-autobuild/home/buildd/work/tree/recipe/debian/patches/series diff -Nru mgba-0.7~b1+dfsg1-r201902181131-830e52f/src/platform/qt/AssetTile.cpp mgba-0.7~b1+dfsg1-r201902191131-0d178a4/src/platform/qt/AssetTile.cpp --- mgba-0.7~b1+dfsg1-r201902181131-830e52f/src/platform/qt/AssetTile.cpp 2019-02-18 11:31:34.000000000 +0000 +++ mgba-0.7~b1+dfsg1-r201902191131-0d178a4/src/platform/qt/AssetTile.cpp 2019-02-19 11:31:37.000000000 +0000 @@ -137,7 +137,7 @@ mTileCache* tileCache = m_tileCaches[m_index >= m_boundary]; unsigned bpp = 8 << tileCache->bpp; int paletteId = m_paletteId; - data = mTileCacheGetTile(tileCache, m_index, m_paletteId); + data = mTileCacheGetTile(tileCache, m_index >= m_boundary ? m_index - m_boundary : m_index, m_paletteId); color_t color = data[index]; m_ui.color->setColor(0, color); m_ui.color->update();