Browse Source

Avoid scale_with_dpi constexpr compiler error.

K. S. Ernest (iFire) Lee 1 year ago
parent
commit
0a47f4ebd2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      platform/windows/display_server_windows.cpp

+ 1 - 1
platform/windows/display_server_windows.cpp

@@ -2573,7 +2573,7 @@ struct Win32InputTextDialogInit {
 	const Callable &callback;
 };
 
-static constexpr int scale_with_dpi(int p_pos, int p_dpi) {
+static int scale_with_dpi(int p_pos, int p_dpi) {
 	return IsProcessDPIAware() ? (p_pos * p_dpi / 96) : p_pos;
 }