diff options
| author | jussi | 2023-10-15 22:31:17 +0300 |
|---|---|---|
| committer | jussi | 2023-10-15 22:31:17 +0300 |
| commit | 95be0403e69b3047a0375cf965dedca0ad876409 (patch) | |
| tree | ebfc72f0e5ad7c193e679a0744443b367902c09a /src/state.c | |
| parent | 7af7e7003131e182efb30bac8c1ff06ac1d667d6 (diff) | |
| download | reilua-enhanced-95be0403e69b3047a0375cf965dedca0ad876409.tar.gz reilua-enhanced-95be0403e69b3047a0375cf965dedca0ad876409.tar.bz2 reilua-enhanced-95be0403e69b3047a0375cf965dedca0ad876409.zip | |
Argumets stored in RL.arg array.
Diffstat (limited to 'src/state.c')
| -rw-r--r-- | src/state.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/state.c b/src/state.c index 2e1a50f..d1a3329 100644 --- a/src/state.c +++ b/src/state.c @@ -6,7 +6,7 @@ State *state; -bool stateInit( const char *exePath ) { +bool stateInit( int argn, const char **argc, const char *exePath ) { state = malloc( sizeof( State ) ); state->exePath = malloc( STRING_LEN * sizeof( char ) ); @@ -107,15 +107,15 @@ bool stateInit( const char *exePath ) { } if ( state->run ) { InitAudioDevice(); - state->run = luaInit(); + state->run = luaInit( argn, argc ); } return state->run; } -void stateInitInterpret() { +void stateInitInterpret( int argn, const char **argc ) { state = malloc( sizeof( State ) ); - luaInit(); + luaInit( argn, argc ); } void stateFree() { |
