pkgsrc/games/xkanon/patches/patch-image__di__Xbpp.cc
tsutsui 58772f319d xkanon: Import xkanon-gtk2-090830 as games/xkanon
Xkanon, developed by Jagarl, is an interpreter for AVG games.
2020-01-02 09:56:49 +00:00

53 lines
1.7 KiB
C++

$NetBSD: patch-image__di__Xbpp.cc,v 1.1 2020/01/02 09:56:49 tsutsui Exp $
- Explicitly use unsigned char instead of char because
`char' is unsigned by default on arm and powerpc.
- Fix LP64 issue.
--- image_di_Xbpp.cc.orig 2008-01-06 06:20:00.000000000 +0000
+++ image_di_Xbpp.cc
@@ -181,9 +181,9 @@ void CopyAllWithMask_Xbpp(DI_Image& dest
char* mask_line = mask + i*width;
char* d = dest_pt; char* s = src_pt;
for (j=0; j<width; j++) {
- char mask_char = *mask_line++;
+ unsigned char mask_char = *mask_line++;
if (mask_char) {
- if (mask_char == -1) {
+ if (mask_char == 0xff) {
Copy1Pixel(d,s);
} else {
SetMiddleColor(d, s, mask_char);
@@ -224,9 +224,9 @@ void CopyRectWithMask_Xbpp(DI_Image& des
char* mask_line = mask + (i+src_y)*swidth + src_x;
char* d = dest_pt; char* s = src_pt;
for (j=0; j<width; j++) {
- char mask_char = *mask_line++;
+ unsigned char mask_char = *mask_line++;
if (mask_char) {
- if (mask_char == -1) {
+ if (mask_char == 0xff) {
Copy1Pixel(d,s);
} else {
SetMiddleColor(d, s, mask_char);
@@ -538,9 +538,9 @@ void CopyRectWithFadeWithMask_Xbpp(DI_Im
char* mask_line = mask + (i+src_y)*swidth + src_x;
char* d = dest_pt; char* s = src_pt;
for (j=0; j<width; j++) {
- char mask_char = *mask_line++;
+ unsigned char mask_char = *mask_line++;
if (mask_char) {
- if (mask_char == -1) {
+ if (mask_char == 0xff) {
SetMiddleColorWithTable(d, s, table);
} else {
int tmp; Copy1Pixel((char*)&tmp, d);
@@ -814,7 +814,7 @@ struct SetMojiBit_fadepixel {
table.SetTable(c1, c2, c3);
}
void FadePixel(char* dest) const {
- int src = 0;
+ long src = 0;
SetMiddleColorWithTable(dest, (char*)src, table);
}
};