From 44e26a12cdd159aa35c863be91279cd2b2e062d0 Mon Sep 17 00:00:00 2001 From: Sasha Szpakowski Date: Sun, 29 Dec 2024 23:42:59 -0400 Subject: [PATCH] Fix build --- src/modules/window/wrap_Window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/window/wrap_Window.cpp b/src/modules/window/wrap_Window.cpp index 5558d4e6a..091d6d2f3 100644 --- a/src/modules/window/wrap_Window.cpp +++ b/src/modules/window/wrap_Window.cpp @@ -678,7 +678,7 @@ static void fileDialogCallback(void *context, const std::vector &fi // Unfortunately, this eats the stack trace, too bad. if (err != 0) - throw love::Exception("Error in file dialog callback: %s", luax_tostring(L, -1)); + throw love::Exception("Error in file dialog callback: %s", lua_tostring(L, -1)); } int w_showFileDialog(lua_State *L)