]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/filepicker.cpp
Removed some cruft and nonstandard int/uint types, added M series BIOS.
[virtualjaguar] / src / gui / filepicker.cpp
index ea987b5323c40f5531f220614f4c2c4dc9404722..5733de6ace1a29b635579e80d9a9ff3c317b95dd 100644 (file)
@@ -300,7 +300,7 @@ void FilePickerWindow::UpdateSelection(const QModelIndex & current, const QModel
        unsigned long fileSize = current.model()->data(current, FLM_FILESIZE).toUInt();
        bool haveUniversalHeader = current.model()->data(current, FLM_UNIVERSALHDR).toBool();
        unsigned long fileType = current.model()->data(current, FLM_FILETYPE).toUInt();
-       uint32 crc = (uint32)current.model()->data(current, FLM_CRC).toUInt();
+       uint32_t crc = (uint32_t)current.model()->data(current, FLM_CRC).toUInt();
 //     printf("FPW: %s\n", s.toAscii().data());
        bool haveUnknown = (i == 0xFFFFFFFF ? true : false);
 #endif