mirror of
https://github.com/libretro/RetroArch
synced 2025-03-01 07:13:35 +00:00
[GX] fix menu pitch
This commit is contained in:
parent
7ca67d3873
commit
14fe8623bb
@ -106,9 +106,9 @@ ifeq ($(USBGECKO), 1)
|
|||||||
endif
|
endif
|
||||||
APP_BOOTER_DIR = wii/app_booter
|
APP_BOOTER_DIR = wii/app_booter
|
||||||
PLATOBJS := $(APP_BOOTER_DIR)/app_booter.binobj
|
PLATOBJS := $(APP_BOOTER_DIR)/app_booter.binobj
|
||||||
PLATCFLAGS := -DGEKKO
|
CFLAGS += -DGEKKO
|
||||||
ifeq ($(USBGECKO), 1)
|
ifeq ($(USBGECKO), 1)
|
||||||
PLATCFLAGS += -DUSBGECKO
|
CFLAGS += -DUSBGECKO
|
||||||
endif
|
endif
|
||||||
|
|
||||||
HAVE_FILTERS_BUILTIN := 1
|
HAVE_FILTERS_BUILTIN := 1
|
||||||
|
@ -1082,10 +1082,10 @@ static bool gx_frame(void *data, const void *frame,
|
|||||||
convert_texture16(gx->menu_data, menu_tex.data,
|
convert_texture16(gx->menu_data, menu_tex.data,
|
||||||
menu->frame_buf.width,
|
menu->frame_buf.width,
|
||||||
menu->frame_buf.height,
|
menu->frame_buf.height,
|
||||||
menu->frame_buf.width * 2);
|
menu->frame_buf.pitch);
|
||||||
DCFlushRange(menu_tex.data,
|
DCFlushRange(menu_tex.data,
|
||||||
menu->frame_buf.width *
|
menu->frame_buf.width *
|
||||||
menu->frame_buf.height * 2);
|
menu->frame_buf.pitch);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user