Skip to content

Commit

Permalink
Name fix, added back VSync
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas committed Apr 6, 2024
1 parent 2b7662d commit 1918aef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

namespace BUTR.CrashReport.Renderer.ImGui;

public class CrashReportWindow
public class CrashReportImGui
{
static CrashReportWindow()
static CrashReportImGui()
{
GlfwInput.RegisterPlatform();
GlfwWindowing.RegisterPlatform();
Expand Down Expand Up @@ -52,7 +52,7 @@ public static void ShowAndWait(CrashReportModel crashReportModel, IList<LogSourc
var window = Window.Create(WindowOptions.Default with
{
Title = $"{crashReportModel.Metadata.GameName} Crash Report",
VSync = false,
VSync = true,
});

var gl = default(GL)!;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace BUTR.CrashReport.Renderer.WinForms;

public partial class HtmlCrashReportForm : Form
public partial class CrashReportWinForms : Form
{
// https://gist.github.com/eikes/2299607
// Copyright: Eike Send http://eike.se/nd
Expand Down Expand Up @@ -91,7 +91,7 @@ function handleIncludeScreenshot(cb) {
public bool IncludeSaveFile { get; set; }
public bool IncludeScreenshot { get; set; }

public HtmlCrashReportForm(CrashReportModel crashReport, ICollection<LogSource> logSources, ICrashReportRendererUtilities crashReportRendererUtilities)
public CrashReportWinForms(CrashReportModel crashReport, ICollection<LogSource> logSources, ICrashReportRendererUtilities crashReportRendererUtilities)
{
CrashReportRendererUtilities = crashReportRendererUtilities;
CrashReport = crashReport;
Expand Down

0 comments on commit 1918aef

Please sign in to comment.