From: uz Date: Thu, 9 Feb 2012 22:01:03 +0000 (+0000) Subject: Remove the check for the target system. It is checked by grc65. X-Git-Tag: V2.14~542 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1d8e059eb2705acbeddb0bc1785dc89afc0fa36a;p=cc65 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 --- 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 */