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:
5be6eae
)
misc: length is unsigned
author
notaz
<notasas@gmail.com>
Sat, 6 Dec 2014 20:52:05 +0000
(22:52 +0200)
committer
notaz
<notasas@gmail.com>
Sat, 6 Dec 2014 20:52:05 +0000
(22:52 +0200)
libpcsxcore/misc.c
patch
|
blob
|
blame
|
history
diff --git
a/libpcsxcore/misc.c
b/libpcsxcore/misc.c
index
905f142
..
a27f60f
100644
(file)
--- a/
libpcsxcore/misc.c
+++ b/
libpcsxcore/misc.c
@@
-123,7
+123,7
@@
int GetCdromFile(u8 *mdir, u8 *time, char *filename) {
if (dir->length[0] == 0) {
return -1;
}
- i += dir->length[0];
+ i +=
(u8)
dir->length[0];
if (dir->flags[0] & 0x2) { // it's a dir
if (!strnicmp((char *)&dir->name[0], filename, dir->name_len[0])) {