notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ab948f7
)
dfinput: return 0xff when the packet ends, like the real thing does
author
notaz
<notasas@gmail.com>
Tue, 14 Jun 2011 15:55:39 +0000
(18:55 +0300)
committer
notaz
<notasas@gmail.com>
Tue, 14 Jun 2011 15:55:39 +0000
(18:55 +0300)
plugins/dfinput/pad.c
patch
|
blob
|
blame
|
history
diff --git
a/plugins/dfinput/pad.c
b/plugins/dfinput/pad.c
index
b01340a
..
9a09563
100644
(file)
--- a/
plugins/dfinput/pad.c
+++ b/
plugins/dfinput/pad.c
@@
-223,7
+223,7
@@
static unsigned char PADpoll_(unsigned char value) {
do_cmd2(value);
if (CurByte >= CmdLen)
- return 0
;
+ return 0
xff; // verified
return buf[CurByte++];
}