diff options
author | Roland Reichwein <mail@reichwein.it> | 2025-01-05 22:32:01 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2025-01-05 22:32:01 +0100 |
commit | 03b28f03c38b35bcc1bbd1ec28a7be17affd3d28 (patch) | |
tree | ec70d62bb681b34b7afe50d292fd138e8bc0ff49 /main.cpp | |
parent | 88ab4cec9636a3e7b43906e5e7d0f67ac77eb2d6 (diff) |
Automatically access click sound file
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ #include "MainLoop.h" -int main() { +int main(int argc, char** argv) { try { - MainLoop main_loop; + MainLoop main_loop{argc, argv}; return main_loop.run(); } catch (const std::exception& ex) { std::cerr << "Error: " << ex.what() << std::endl; |