mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-01-23 21:17:20 +00:00
Replace DWORD -> uint32_t. (PR #1350)
Some have been left where tightly coupled with the Win32 API.
This commit is contained in:
@@ -203,7 +203,7 @@ static void _SetupColorRamp(const int iPrimary, int & iColor_)
|
||||
int nR = bR ? nC : 0;
|
||||
int nG = bG ? nC : 0;
|
||||
int nB = bB ? nC : 0;
|
||||
DWORD nColor = RGB(nR, nG, nB);
|
||||
uint32_t nColor = RGB(nR, nG, nB);
|
||||
g_aColorPalette[iColor_] = nColor;
|
||||
#if DEBUG_COLOR_RAMP
|
||||
strRamp += StrFormat("RGB(%3d,%3d,%3d), ", nR, nG, nB);
|
||||
|
||||
Reference in New Issue
Block a user