From 25a16a2143d3d0070503f5a14a99ed215eef636c Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Fri, 15 Apr 2022 14:27:21 +0900 Subject: [PATCH] ebiten: fix a wrong comment at WindowResizingModeOnlyFullscreenEnabled --- window.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window.go b/window.go index 6f4d54649..9d42fd706 100644 --- a/window.go +++ b/window.go @@ -32,7 +32,7 @@ const ( // WindowResizingModeDisabled indicates the mode to disallow resizing the window by a user. WindowResizingModeDisabled WindowResizingModeType = WindowResizingModeType(ui.WindowResizingModeDisabled) - // WindowResizingModeDisabled indicates the mode to disallow resizing the window, + // WindowResizingModeOnlyFullscreenEnabled indicates the mode to disallow resizing the window, // but allow to make the window fullscreen by a user. // This works only on macOS so far. // On the other platforms, this is the same as WindowResizingModeDisabled.