From 7a2f1532bfe44f9bbda06b7dda69199e5c287612 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Fri, 28 Jul 2023 14:54:02 -0700 Subject: [PATCH] fix DS being shown upside down when ScreenControlNDS is used fixes 78f5e755343d279f6c05821751f14cea021b7672 --- src/BizHawk.Bizware.Graphics/OpenGL/IGL_OpenGL.cs | 2 +- src/BizHawk.Client.EmuHawk/MainForm.cs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Bizware.Graphics/OpenGL/IGL_OpenGL.cs b/src/BizHawk.Bizware.Graphics/OpenGL/IGL_OpenGL.cs index 67af8162b3..eda23e3de3 100644 --- a/src/BizHawk.Bizware.Graphics/OpenGL/IGL_OpenGL.cs +++ b/src/BizHawk.Bizware.Graphics/OpenGL/IGL_OpenGL.cs @@ -482,7 +482,7 @@ namespace BizHawk.Bizware.Graphics { // create a texture for it var texId = GenTexture(); - var tex = new Texture2d(this, texId, w, h) { IsUpsideDown = true }; // TODO: The IsUpsideDown doesn't ever get used here it seems + var tex = new Texture2d(this, texId, w, h); GL.BindTexture(TextureTarget.Texture2D, texId); GL.TexImage2D(TextureTarget.Texture2D, 0, InternalFormat.Rgba8, (uint)w, (uint)h, 0, PixelFormat.Bgra, PixelType.UnsignedByte, IntPtr.Zero.ToPointer()); diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index c929c6c3fd..dd55cb31b9 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -3838,7 +3838,8 @@ namespace BizHawk.Client.EmuHawk //path = ioa_openrom.Path; } - DisplayManager.ActivateOpenGLContext(); // required in case the core wants to created a shared OpenGL context + DisplayManager.ActivateOpenGLContext(); // required in case the core wants to create a shared OpenGL context + var result = loader.LoadRom(path, nextComm, ioaRetro?.CorePath, forcedCoreName: MovieSession.QueuedCoreName); if (result) Game = loader.Game;