fixes gcc compiler warning
svn-id: r8061
This commit is contained in:
parent
52723beaf0
commit
d4ac1044ba
1 changed files with 2 additions and 2 deletions
|
@ -292,7 +292,7 @@ void SkyDisk::fnCacheFiles(void) {
|
|||
bCnt = 0;
|
||||
found = false;
|
||||
while (_buildList[bCnt] && (!found)) {
|
||||
if ((_buildList[bCnt] & 0x7FFF) == _loadedFilesList[lCnt]) found = true;
|
||||
if ((_buildList[bCnt] & 0x7FFFU) == _loadedFilesList[lCnt]) found = true;
|
||||
else bCnt++;
|
||||
}
|
||||
if (found) {
|
||||
|
@ -315,7 +315,7 @@ void SkyDisk::fnCacheFiles(void) {
|
|||
lCnt = 0;
|
||||
found = false;
|
||||
while (_loadedFilesList[lCnt] && (!found)) {
|
||||
if (_loadedFilesList[lCnt] == (_buildList[bCnt] & 0x7FFF)) found = true;
|
||||
if (_loadedFilesList[lCnt] == (_buildList[bCnt] & 0x7FFFU)) found = true;
|
||||
lCnt++;
|
||||
}
|
||||
if (found) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue