Skip to content

Commit

Permalink
fix ifdef
Browse files Browse the repository at this point in the history
  • Loading branch information
asvitkine committed Jul 15, 2021
1 parent fd6f349 commit 8f23a37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BasiliskII/src/CrossPlatform/video_blit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ static void Blit_Copy_Raw(uint8 * dest, const uint8 * source, uint32 length)
/* --- 1-bit indexed to 8-bit color mode conversion --- */
/* -------------------------------------------------------------------------- */

#if !defined(REAL_ADDRESSING) && !defined(DIRECT_ADDRESSING)
#if !REAL_ADDRESSING && !DIRECT_ADDRESSING
#define CONVERT_BW(byte) (byte)==1?0:255
static void Blit_Expand_1_To_8_Color(uint8 * dest, const uint8 * p, uint32 length)
{
Expand Down

0 comments on commit 8f23a37

Please sign in to comment.