aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/snail.cpp
diff options
context:
space:
mode:
authoreriktorbjorn2011-06-19 07:59:37 +0200
committereriktorbjorn2011-06-19 07:59:37 +0200
commit3871c71f0e6f5202e935ac7119fefedde1f8e449 (patch)
treef38c170ce19b222531750db7f105c60e56e85eda /engines/cge/snail.cpp
parent77d5c25472f414c2b0c49a920329a6811d271281 (diff)
downloadscummvm-rg350-3871c71f0e6f5202e935ac7119fefedde1f8e449.tar.gz
scummvm-rg350-3871c71f0e6f5202e935ac7119fefedde1f8e449.tar.bz2
scummvm-rg350-3871c71f0e6f5202e935ac7119fefedde1f8e449.zip
CGE: Fix compilation under GCC
Unfortunately, I had to stub a few things but this all looks like code that will have to be rewritten later anyway.
Diffstat (limited to 'engines/cge/snail.cpp')
-rw-r--r--engines/cge/snail.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/engines/cge/snail.cpp b/engines/cge/snail.cpp
index 382b6dbc62..ec1fae515c 100644
--- a/engines/cge/snail.cpp
+++ b/engines/cge/snail.cpp
@@ -33,13 +33,20 @@
#include "cge/text.h"
#include "cge/mouse.h"
#include "cge/cge_main.h"
-#include <dos.h>
#include <stdio.h>
#include <stdlib.h>
#include "cge/keybd.h"
namespace CGE {
+static void _enable() {
+ warning("STUB: _enable");
+}
+
+static void _disable() {
+ warning("STUB: _disable");
+}
+
int MaxCave = 0;
SCB Scb = { NULL, 0, NULL };