From 6c46f3ba26b5cbfe2aa00b9de345ee360dd1af82 Mon Sep 17 00:00:00 2001 From: Stuart George Date: Tue, 19 Dec 2006 01:06:45 +0000 Subject: Added Apple IIgs as machine type for AGI engine svn-id: r24876 --- common/util.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'common/util.cpp') diff --git a/common/util.cpp b/common/util.cpp index e238abe05f..d67027b873 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -193,6 +193,8 @@ const PlatformDescription g_platforms[] = { {"segacd", "segacd", "SegaCD", kPlatformSegaCD}, {"windows", "win", "Windows", kPlatformWindows}, + {"2GS", "2gs", "Apple IIgs", kPlatformApple2GS }, + {0, 0, "Default", kPlatformUnknown} }; @@ -320,7 +322,7 @@ bool enableSpecialDebugLevel(const String &option) { void enableSpecialDebugLevelList(const String &option) { uint start = 0; uint end = 0; - + const char *str = option.c_str(); for (end = start + 1; end <= option.size(); ++end) { if (str[end] == ',' || end == option.size()) { -- cgit v1.2.3