mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-25 19:51:08 +00:00
qlit: use QType instead of int
Backports commit 3d96ea44d4dde442094b7d9e5b71ef61b4c4ae39 from qemu
This commit is contained in:
parent
c6dd0d3bef
commit
6b2143ad64
|
@ -20,7 +20,7 @@ typedef struct QLitDictEntry QLitDictEntry;
|
||||||
typedef struct QLitObject QLitObject;
|
typedef struct QLitObject QLitObject;
|
||||||
|
|
||||||
struct QLitObject {
|
struct QLitObject {
|
||||||
int type;
|
QType type;
|
||||||
union {
|
union {
|
||||||
bool qbool;
|
bool qbool;
|
||||||
int64_t qnum;
|
int64_t qnum;
|
||||||
|
|
Loading…
Reference in a new issue