We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dffbd3 commit 565db86Copy full SHA for 565db86
Changelog.md
@@ -2,6 +2,12 @@
2
3
## [Unreleased]
4
5
+## [4.1.2] - 2024-05-20
6
+
7
+Bugfix:
8
9
+- [apple2] fix sp_find_device to not stop on error devices when finding names (thanks Eric Carr)
10
11
## [4.1.1] - 2024-05-14
12
13
- Enhance build to produce target specific versions of the library, e.g. apple2enh from apple2 src.
apple2/src/bus/sp_find_device.c
@@ -48,7 +48,7 @@ int sp_find_device(char *name) {
48
49
for (id = 1; id <= deviceCount; id++) {
50
err = sp_status(id, 3);
51
- if (err != 0) return -err;
+ if (err != 0) continue;
52
53
if (compare_padded_string((const char *)&sp_payload[5], name) == 0) {
54
return id;
version.txt
@@ -1 +1 @@
1
-4.1.1
+4.1.2
0 commit comments