mirror of https://github.com/mgba-emu/mgba.git
Qt: Attempt to fix MSVC build
This commit is contained in:
parent
7bd877dfbd
commit
3b32da60fa
|
@ -199,7 +199,7 @@ bool AssetView::lookupObjGBA(int id, struct ObjInfo* info) {
|
||||||
paletteSet = 2;
|
paletteSet = 2;
|
||||||
bits = 4;
|
bits = 4;
|
||||||
}
|
}
|
||||||
*info = (ObjInfo) {
|
*info = ObjInfo{
|
||||||
tile,
|
tile,
|
||||||
width / 8,
|
width / 8,
|
||||||
height / 8,
|
height / 8,
|
||||||
|
@ -257,7 +257,7 @@ bool AssetView::lookupObjGB(int id, struct ObjInfo* info) {
|
||||||
}
|
}
|
||||||
palette += 8;
|
palette += 8;
|
||||||
|
|
||||||
*info = (ObjInfo) {
|
*info = ObjInfo{
|
||||||
tile,
|
tile,
|
||||||
1,
|
1,
|
||||||
height / 8,
|
height / 8,
|
||||||
|
|
Loading…
Reference in New Issue