summaryrefslogtreecommitdiff
path: root/Userland/Games
diff options
context:
space:
mode:
authorHendiadyoin1 <leon2002.la@gmail.com>2022-01-29 16:51:02 +0100
committerBrian Gianforcaro <b.gianfo@gmail.com>2022-02-06 17:52:33 +0000
commitfbb798f98c86c2422de006425dd8f87fda1d5b55 (patch)
tree471afe0c131c2404ed1cbf023424323a6469eda3 /Userland/Games
parentf6ddaef8bf4be70d2409be2a8ee47fb8e36bfd24 (diff)
downloadserenity-fbb798f98c86c2422de006425dd8f87fda1d5b55.zip
AK: Move integral log2 and exp to IntegerMath.h
Diffstat (limited to 'Userland/Games')
-rw-r--r--Userland/Games/2048/GameSizeDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Games/2048/GameSizeDialog.cpp b/Userland/Games/2048/GameSizeDialog.cpp
index 8fda481852..3f4ccd3a4e 100644
--- a/Userland/Games/2048/GameSizeDialog.cpp
+++ b/Userland/Games/2048/GameSizeDialog.cpp
@@ -6,7 +6,7 @@
#include "GameSizeDialog.h"
#include "Game.h"
-#include <AK/Math.h>
+#include <AK/IntegralMath.h>
#include <LibGUI/BoxLayout.h>
#include <LibGUI/Button.h>
#include <LibGUI/CheckBox.h>