1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Fix duplicate RGB colours in palette (#18299)

* Remove duplicate RGB colours from palette

* Update hash

* Update reference dat file

---------

Co-authored-by: Spacek531 <spacek531@comcast.net>
Co-authored-by: duncanspumpkin <duncans_pumpkin@hotmail.co.uk>
This commit is contained in:
Michael Steenbeek
2023-04-16 16:15:26 +02:00
committed by GitHub
parent 7011a9775c
commit 812ea151bb
4 changed files with 8 additions and 8 deletions

View File

@@ -54,5 +54,5 @@ TEST_F(ImageImporterTests, Import_Logo)
// Update expected hash if change is expected.
ASSERT_NE(nullptr, result.Buffer.data());
auto hash = GetHash(result.Buffer.data(), result.Buffer.size());
ASSERT_EQ(0xCEF27C7D, hash);
ASSERT_EQ(uint32_t(0x212A99BC), hash);
}