1
0
Fork 0

don't use uint8_t (???)

This commit is contained in:
torusrxxx 2021-04-01 23:05:20 +08:00
parent 9546ce84f3
commit eb2a20a359
No known key found for this signature in database
GPG Key ID: A795C73A0F1CFADD
2 changed files with 2 additions and 3 deletions

View File

@ -91,7 +91,7 @@ void CPUInfoBox::clear()
setInfoLine(3, "");
}
QString CPUInfoBox::formatSSEOperand(const QByteArray & data, uint8_t vectorType)
QString CPUInfoBox::formatSSEOperand(const QByteArray & data, unsigned char vectorType)
{
QString hex;
bool isXMMdecoded = false;

View File

@ -1,7 +1,6 @@
#ifndef INFOBOX_H
#define INFOBOX_H
#include "Imports.h"
#include "StdTable.h"
class WordEditDialog;
@ -23,7 +22,7 @@ public:
void setupWatchMenu(QMenu* menu, duint wVA);
int followInDump(dsint wVA);
static QString formatSSEOperand(const QByteArray & data, uint8_t vectorType);
static QString formatSSEOperand(const QByteArray & data, unsigned char vectorType);
public slots:
void disasmSelectionChanged(dsint parVA);