1
0
Fork 0

Fix a few warnings. Reported by Xulchris

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2271
This commit is contained in:
Peter Veenstra 2005-08-10 20:36:36 +00:00
parent f9e7488309
commit d0b017e5b3
3 changed files with 6 additions and 6 deletions

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: fpu.cpp,v 1.25 2005-02-22 13:06:05 qbix79 Exp $ */
/* $Id: fpu.cpp,v 1.26 2005-08-10 20:36:36 qbix79 Exp $ */
#include "dosbox.h"
#if C_FPU
@ -43,7 +43,7 @@ typedef PhysPt EAPoint;
#include "fpu_types.h"
struct {
static struct {
FPU_Reg regs[9];
FPU_P_Reg p_regs[9];
FPU_Tag tags[9];

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: sdl_mapper.cpp,v 1.13 2005-07-19 19:45:31 qbix79 Exp $ */
/* $Id: sdl_mapper.cpp,v 1.14 2005-08-10 20:36:36 qbix79 Exp $ */
#define OLD_JOYSTICK 1
@ -967,7 +967,7 @@ protected:
};
struct {
static struct {
CCaptionButton * event_title;
CCaptionButton * bind_title;
CCaptionButton * selected;

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: iohandler.cpp,v 1.17 2005-03-25 11:52:32 qbix79 Exp $ */
/* $Id: iohandler.cpp,v 1.18 2005-08-10 20:36:36 qbix79 Exp $ */
#include <string.h>
#include "dosbox.h"
@ -142,7 +142,7 @@ struct IOF_Entry {
};
#define IOF_QUEUESIZE 16
struct {
static struct {
Bitu used;
IOF_Entry entries[IOF_QUEUESIZE];
} iof_queue;