mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 13:25:45 +00:00
graphics_surface: Fix merge conflicts.
This commit is contained in:
parent
7c376760c0
commit
74c4739713
2 changed files with 4 additions and 3 deletions
|
@ -339,9 +339,9 @@ void GraphicsSurfaceWidget::OnUpdate() {
|
|||
static_cast<size_t>(Source::RenderTarget0)];
|
||||
|
||||
surface_address = rt.Address();
|
||||
surface_width = rt.horiz;
|
||||
surface_height = rt.vert;
|
||||
if (rt.format != 0) {
|
||||
surface_width = rt.width;
|
||||
surface_height = rt.height;
|
||||
if (rt.format != Tegra::RenderTargetFormat::NONE) {
|
||||
surface_format =
|
||||
ConvertToTextureFormat(static_cast<Tegra::RenderTargetFormat>(rt.format));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue