Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
slime73 committed Dec 30, 2024
1 parent ecd08a2 commit 44e26a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/window/wrap_Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ static void fileDialogCallback(void *context, const std::vector<std::string> &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)
Expand Down

0 comments on commit 44e26a1

Please sign in to comment.