mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
Use custom "argc" and "argv" exposing. Fixes #6
This commit is contained in:
@@ -18,7 +18,13 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
int main() {
|
||||
int mainArgc;
|
||||
char **mainArgv;
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
mainArgc = argc;
|
||||
mainArgv = argv;
|
||||
|
||||
hex::Window window;
|
||||
|
||||
// Shared Data
|
||||
|
||||
Reference in New Issue
Block a user