1
0
Fork 0

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:
Peter Veenstra 2020-01-29 07:38:18 +00:00
parent ec8b59ab06
commit 6d11dd5eac

View file

@ -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];