Qt: Attempt to fix MSVC build

This commit is contained in:
Vicki Pfau 2024-01-31 02:36:35 -08:00
parent 7bd877dfbd
commit 3b32da60fa
1 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ bool AssetView::lookupObjGBA(int id, struct ObjInfo* info) {
paletteSet = 2;
bits = 4;
}
*info = (ObjInfo) {
*info = ObjInfo{
tile,
width / 8,
height / 8,
@ -257,7 +257,7 @@ bool AssetView::lookupObjGB(int id, struct ObjInfo* info) {
}
palette += 8;
*info = (ObjInfo) {
*info = ObjInfo{
tile,
1,
height / 8,