Skip to content

Commit

Permalink
fix x86_64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
korli committed Mar 16, 2024
1 parent d7275a6 commit f3ebc3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/BecassoMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ void generate_alphabuffer (char *alpha)
gAlphaBuffer[253] = schar[1];
gAlphaBuffer[254] = schar[2];
gAlphaBuffer[255] = schar[3];
char xAlphaMask[256] = { KEYFILE_MASK };
uchar xAlphaMask[256] = { KEYFILE_MASK };
char wbuffer[256];
for (i = 0; i < 255; i++)
wbuffer[i] = gAlphaBuffer[i] ^ xAlphaMask[i];
Expand Down
2 changes: 1 addition & 1 deletion source/CanvasView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4292,7 +4292,7 @@ void CanvasView::CopyTarget (BMessage *message)
message->PrintToStream();
}

extern bool gGlobalAlpha;
extern int gGlobalAlpha;
if (!gGlobalAlpha)
{
#if SAVE_DISABLED
Expand Down

0 comments on commit f3ebc3b

Please sign in to comment.