From 6ee7d76859b77df8dc69b8c867e841b0524a1499 Mon Sep 17 00:00:00 2001 From: Modnark <66146584+Modnark@users.noreply.github.com> Date: Sat, 8 Oct 2022 21:11:35 -0400 Subject: [PATCH] Undo FSAA changes also removed some useless comment. --- src/include/Application.h | 1 - src/source/Application.cpp | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/include/Application.h b/src/include/Application.h index 040c468..d72fd0f 100644 --- a/src/include/Application.h +++ b/src/include/Application.h @@ -7,7 +7,6 @@ #include "IEBrowser.h" #include "Mouse.h" #include "Tool/Tool.h" -//#include "GuiRoot.h" class TextButtonInstance; class ImageButtonInstance; diff --git a/src/source/Application.cpp b/src/source/Application.cpp index 09bad93..5a7d908 100644 --- a/src/source/Application.cpp +++ b/src/source/Application.cpp @@ -108,7 +108,9 @@ Application::Application(HWND parentWindow) : _propWindow(NULL) { //: GApp(setti _settings.writeLicenseFile = false; _settings.logFilename = tempPath + "/g3dlog.txt"; _settings.window.center = true; - _settings.window.fsaaSamples = 8; + + // Needs to be enabled if "B3DCCService" (still need to finalize that name) + //_settings.window.fsaaSamples = 8; Win32Window* window = Win32Window::create(_settings.window,_hwndRenderer); ShowWindow(_hwndRenderer, SW_SHOW);