Fix unintentional change of union to struct.
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4312
This commit is contained in:
parent
ec8b59ab06
commit
6d11dd5eac
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ Bit8u Scaler_Aspect[SCALER_MAXHEIGHT];
|
|||
Bit16u Scaler_ChangedLines[SCALER_MAXHEIGHT];
|
||||
Bitu Scaler_ChangedLineIndex;
|
||||
|
||||
static struct {
|
||||
static union {
|
||||
//The +1 is a at least for the normal scalers not needed. (-1 is enough)
|
||||
Bit32u b32 [SCALER_MAX_MUL_HEIGHT+1][SCALER_MAXWIDTH*SCALER_MAX_MUL_WIDTH];
|
||||
Bit16u b16 [SCALER_MAX_MUL_HEIGHT+1][SCALER_MAXWIDTH*SCALER_MAX_MUL_WIDTH];
|
||||
|
|
Loading…
Add table
Reference in a new issue