Squashed 'external/parallel-rdp/parallel-rdp-standalone/' changes from d1cc912c..388d70f5
388d70f5 Update to 1cecd042b2619bc505c12bfdc713808386f2b54d git-subtree-dir: external/parallel-rdp/parallel-rdp-standalone git-subtree-split: 388d70f5835b352d841d9d9e5a08c5de01470f41
This commit is contained in:
2
COMMIT
2
COMMIT
@@ -1 +1 @@
|
||||
1f69c762be68feb9fcd5276d75acc6e5a6160a19
|
||||
1cecd042b2619bc505c12bfdc713808386f2b54d
|
||||
|
||||
@@ -202,9 +202,10 @@ void store_vram_color(uint index, uint slice)
|
||||
{
|
||||
index &= RDRAM_MASK_8;
|
||||
index += slice * RDRAM_SIZE;
|
||||
vram8.data[index ^ 3u] = mem_u8(current_color.r);
|
||||
uint col = (index & 1) != 0 ? current_color.g : current_color.r;
|
||||
vram8.data[index ^ 3u] = mem_u8(col);
|
||||
if ((index & 1u) != 0u)
|
||||
hidden_vram.data[index >> 1u] = mem_u8((current_color.r & 1) * 3);
|
||||
hidden_vram.data[index >> 1u] = mem_u8((col & 1) * 3);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user