Fix some warnings in pedantic mode
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3350
This commit is contained in:
parent
d54f7a4edf
commit
b35f4027cc
2 changed files with 4 additions and 4 deletions
|
@ -16,7 +16,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/* $Id: fpu_instructions.h,v 1.31 2007-01-08 19:45:39 qbix79 Exp $ */
|
||||
/* $Id: fpu_instructions.h,v 1.32 2009-04-25 06:59:54 qbix79 Exp $ */
|
||||
|
||||
|
||||
static void FPU_FINIT(void) {
|
||||
|
@ -321,7 +321,7 @@ static void FPU_FDIVR(Bitu st, Bitu other){
|
|||
fpu.regs[st].d= fpu.regs[other].d/fpu.regs[st].d;
|
||||
// flags and such :)
|
||||
return;
|
||||
};
|
||||
}
|
||||
|
||||
static void FPU_FMUL(Bitu st, Bitu other){
|
||||
fpu.regs[st].d*=fpu.regs[other].d;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/* $Id: sdl_mapper.cpp,v 1.57 2009-02-11 22:16:05 c2woody Exp $ */
|
||||
/* $Id: sdl_mapper.cpp,v 1.58 2009-04-25 06:59:54 qbix79 Exp $ */
|
||||
|
||||
#include <vector>
|
||||
#include <list>
|
||||
|
@ -53,7 +53,7 @@ enum BB_Types {
|
|||
|
||||
enum BC_Types {
|
||||
BC_Mod1,BC_Mod2,BC_Mod3,
|
||||
BC_Hold,
|
||||
BC_Hold
|
||||
};
|
||||
|
||||
#define BMOD_Mod1 0x0001
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue