mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
GRAPHICS: Remove deprecated register keyword
This commit is contained in:
parent
55b1bfeedb
commit
d69db0c54f
@ -92,7 +92,7 @@ void Super2xSaITemplate(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uin
|
||||
} else if (color5 == color3 && color2 != color6) {
|
||||
product2b = product1b = color5;
|
||||
} else if (color5 == color3 && color2 == color6) {
|
||||
register int r = 0;
|
||||
int r = 0;
|
||||
|
||||
r += GetResult(color6, color5, color1, colorA1);
|
||||
r += GetResult(color6, color5, color4, colorB1);
|
||||
@ -221,7 +221,7 @@ void SuperEagleTemplate(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uin
|
||||
product2a = interpolate_1_1(color2, color3);
|
||||
}
|
||||
} else {
|
||||
register int r = 0;
|
||||
int r = 0;
|
||||
|
||||
r += GetResult(color6, color5, color1, colorA1);
|
||||
r += GetResult(color6, color5, color4, colorB1);
|
||||
@ -269,7 +269,7 @@ void _2xSaITemplate(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32
|
||||
|
||||
for (int i = 0; i < width; ++i) {
|
||||
|
||||
register unsigned colorA, colorB;
|
||||
unsigned colorA, colorB;
|
||||
unsigned colorC, colorD,
|
||||
colorE, colorF, colorG, colorH, colorI, colorJ, colorK, colorL, colorM, colorN, colorO;
|
||||
unsigned product, product1, product2;
|
||||
@ -334,7 +334,7 @@ void _2xSaITemplate(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32
|
||||
product1 = colorA;
|
||||
product2 = colorA;
|
||||
} else {
|
||||
register int r = 0;
|
||||
int r = 0;
|
||||
|
||||
product1 = interpolate_1_1(colorA, colorC);
|
||||
product = interpolate_1_1(colorA, colorB);
|
||||
|
Loading…
Reference in New Issue
Block a user