From e57273ed0c5205e959efb89e504943ebe6b40eeb Mon Sep 17 00:00:00 2001 From: Maurice Heumann Date: Sat, 26 Nov 2022 09:07:09 +0100 Subject: [PATCH] Small fix --- src/client/game/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/game/game.cpp b/src/client/game/game.cpp index 7250a2dd..528c9702 100644 --- a/src/client/game/game.cpp +++ b/src/client/game/game.cpp @@ -15,7 +15,7 @@ namespace game throw std::runtime_error("Invalid host application"); } - return size_t(host.get_ptr()); + return reinterpret_cast(host.get_ptr()); }(); return base; }