1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-25 13:29:41 +00:00

Order of table entries was wrong, so bsearch failed.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5342 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-12-28 17:09:26 +00:00
parent 6ead4abf24
commit 70a3bcb0df

View File

@ -122,8 +122,8 @@ struct TargetEntry {
* Allows mupltiple entries for one target id (target name aliases).
*/
static const TargetEntry TargetMap[] = {
{ "apple2enh", TGT_APPLE2ENH },
{ "apple2", TGT_APPLE2 },
{ "apple2enh", TGT_APPLE2ENH },
{ "atari", TGT_ATARI },
{ "atmos", TGT_ATMOS },
{ "bbc", TGT_BBC },