aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/general.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/general.h')
-rw-r--r--engines/cge/general.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/engines/cge/general.h b/engines/cge/general.h
index c1c417c237..16b0c1e2bf 100644
--- a/engines/cge/general.h
+++ b/engines/cge/general.h
@@ -33,7 +33,6 @@
#include "common/textconsole.h"
#include "common/str.h"
#include "cge/jbw.h"
-#include <io.h>
#include "cge/boot.h"
namespace CGE {
@@ -114,22 +113,22 @@ class EMS;
class EMM {
- friend EMS;
+ friend class EMS;
bool Test(void);
long Top, Lim;
EMS *List;
int Han;
static void *Frame;
public:
- EMM::EMM(long size = 0);
- EMM::~EMM(void);
+ EMM(long size = 0);
+ ~EMM(void);
EMS *Alloc(uint16 siz);
void Release(void);
};
class EMS {
- friend EMM;
+ friend class EMM;
EMM *Emm;
long Ptr;
uint16 Siz;