From 1d8e059eb2705acbeddb0bc1785dc89afc0fa36a Mon Sep 17 00:00:00 2001 From: uz Date: Thu, 9 Feb 2012 22:01:03 +0000 Subject: [PATCH] Remove the check for the target system. It is checked by grc65. git-svn-id: svn://svn.cc65.org/cc65/trunk@5521 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cl65/main.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/cl65/main.c b/src/cl65/main.c index f3e7136dc..d10e03a30 100644 --- a/src/cl65/main.c +++ b/src/cl65/main.c @@ -594,10 +594,9 @@ static void CompileRes (const char* File) /* Remember the current assembler argument count */ unsigned ArgCount = GRC.ArgCount; - /* Resource files need an geos-apple or geos-cbm target */ - if (Target != TGT_GEOS_APPLE && Target != TGT_GEOS_CBM) { - Error ("Resource files need a geos-apple or geos-cbm, target"); - } + /* Resource files need an geos-apple or geos-cbm target but this + * is checked within grc65. + */ CmdSetTarget (&GRC, Target); /* Add the file as argument for the resource compiler */ -- 2.39.5