Type specifiers for unsigned values. Makes g++ happy.
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2727
This commit is contained in:
parent
ed121c32e1
commit
454422c970
1 changed files with 2 additions and 2 deletions
|
@ -21,8 +21,8 @@
|
|||
#include "inout.h"
|
||||
#include "int10.h"
|
||||
|
||||
static Bit8u cga_masks[4]={~192,~48,~12,~3};
|
||||
static Bit8u cga_masks2[8]={~128,~64,~32,~16,~8,~4,~2,~1};
|
||||
static Bit8u cga_masks[4]={~192U,~48U,~12U,~3U};
|
||||
static Bit8u cga_masks2[8]={~128U,~64U,~32U,~16U,~8U,~4U,~2U,~1U};
|
||||
void INT10_PutPixel(Bit16u x,Bit16u y,Bit8u page,Bit8u color) {
|
||||
|
||||
switch (CurMode->type) {
|
||||
|
|
Loading…
Add table
Reference in a new issue