Skip to content

Commit

Permalink
xscale and yscale parameters are unused
Browse files Browse the repository at this point in the history
  • Loading branch information
dri-richard committed Jul 23, 2024
1 parent 2767c84 commit 16147c5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions engine/platform/src/platform_window_glfw3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ namespace dmPlatform

static void OnContentScaleCallback(GLFWwindow* glfw_window, float xscale, float yscale)
{
(void)xscale;
(void)yscale;

int width, height;
glfwGetWindowSize(glfw_window, &width, &height);
OnWindowResize(glfw_window, width, height);
Expand Down

0 comments on commit 16147c5

Please sign in to comment.