Moved emulator_version #define to 86box.h and #included it in all files that use that #define.

This commit is contained in:
OBattler
2016-08-15 04:01:36 +02:00
parent 17c1817bff
commit 9a4cd321d6
5 changed files with 5 additions and 3 deletions

1
src/86box.h Normal file
View File

@@ -0,0 +1 @@
#define emulator_version "1.00"

View File

@@ -568,6 +568,4 @@ extern uint32_t eip_msr;
/* For the AMD K6. */
extern uint64_t star;
#define emulator_version "1.00"
#define FPU_CW_Reserved_Bits (0xe0c0)

View File

@@ -20,7 +20,8 @@
#include "iomd.h"
#include "arm.h"
#else
#include "ibm.h"
#include "86box.h"
#include "ibm.h"
#include "io.h"
#include "pic.h"
#include "timer.h"

View File

@@ -3,6 +3,7 @@
#include <d3d9.h>
#undef BITMAP
#include <D3dx9tex.h>
#include "86box.h"
#include "resources.h"
#include "video.h"
#include "win-d3d-fs.h"

View File

@@ -13,6 +13,7 @@
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include "86box.h"
#include "ibm.h"
#include "cdrom-null.h"
#include "cdrom-ioctl.h"