Add progress indicator when loading a file in case user reads from a server and not a local disk

This commit is contained in:
IrisZ64
2025-12-17 21:51:48 +01:00
parent b89ff3d212
commit f870d8f979
9 changed files with 196 additions and 102 deletions

View File

@@ -1,7 +1,7 @@
#include <KaizenGui.hpp>
#include <cflags.hpp>
int main(int argc, char **argv) {
int main(const int argc, char **argv) {
KaizenGui kaizenGui;
cflags::cflags flags;
flags.add_string_callback('\0', "rom", [&kaizenGui](const std::string& v) { kaizenGui.LoadROM(v); }, "Rom to launch from command-line");