don't use uint8_t (???)
This commit is contained in:
parent
9546ce84f3
commit
eb2a20a359
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue