mirror of
https://github.com/cc65/cc65.git
synced 2024-11-13 13:11:06 +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:
parent
6ead4abf24
commit
70a3bcb0df
@ -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 },
|
||||
|
Loading…
Reference in New Issue
Block a user