aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorLionel Ulmer2002-05-01 17:16:47 +0000
committerLionel Ulmer2002-05-01 17:16:47 +0000
commit7fa28ffec2e842cbc7a4404d75509288afa9995e (patch)
tree146d45d918090a29e7e337af3a9942bef2b99192 /main.cpp
parent75f0674e465e628a9a6a5a7cc56e45609ac2e6d3 (diff)
downloadscummvm-rg350-7fa28ffec2e842cbc7a4404d75509288afa9995e.tar.gz
scummvm-rg350-7fa28ffec2e842cbc7a4404d75509288afa9995e.tar.bz2
scummvm-rg350-7fa28ffec2e842cbc7a4404d75509288afa9995e.zip
Removed ScummVM's private alloc / free / realloc functions. If I break
something, just yell :-) svn-id: r4160
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index f4916f51c7..08adf90178 100644
--- a/main.cpp
+++ b/main.cpp
@@ -107,7 +107,7 @@ int main(int argc, char *argv[])
{
char *s = detector.getGameName();
system->property(OSystem::PROP_SET_WINDOW_CAPTION, (long)s);
- Scumm::free(s);
+ free(s);
}
/* Simon the Sorcerer? */