1
0
Fork 0

Fix a warning

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2502
This commit is contained in:
Peter Veenstra 2006-02-14 12:44:38 +00:00
parent c807253656
commit 8b9ba65e36
2 changed files with 5 additions and 2 deletions

View file

@ -29,7 +29,7 @@ Bit8u Scaler_Aspect[SCALER_MAXHEIGHT];
Bit16u Scaler_ChangedLines[SCALER_MAXHEIGHT];
Bitu Scaler_ChangedLineIndex;
union {
static union {
Bit32u b32 [4][SCALER_MAXWIDTH*3];
Bit16u b16 [4][SCALER_MAXWIDTH*3];
Bit8u b8 [4][SCALER_MAXWIDTH*3];

View file

@ -16,6 +16,8 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: vga_s3.cpp,v 1.3 2006-02-14 12:44:38 qbix79 Exp $ */
#include "dosbox.h"
#include "inout.h"
#include "vga.h"
@ -429,4 +431,5 @@ Bitu SVGA_S3_GetClock(void) {
else
clock=1000*S3_CLOCK(vga.s3.clk[clock].m,vga.s3.clk[clock].n,vga.s3.clk[clock].r);
return clock;
}
}