mirror of
https://github.com/opentx/opentx.git
synced 2025-07-26 01:35:21 +03:00
Removed compiler warning: lua.cpp:63:60: warning: missing braces around initializer for 'ScriptInputsOutputs' [-Wmissing-braces]
This commit is contained in:
parent
91dfb0309e
commit
10413bbede
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ lua_State *L = NULL;
|
|||
uint8_t luaState = 0;
|
||||
uint8_t luaScriptsCount = 0;
|
||||
ScriptInternalData scriptInternalData[MAX_SCRIPTS] = { { SCRIPT_NOFILE, 0 } };
|
||||
ScriptInputsOutputs scriptInputsOutputs[MAX_SCRIPTS] = { 0 };
|
||||
ScriptInputsOutputs scriptInputsOutputs[MAX_SCRIPTS] = { {0} };
|
||||
ScriptInternalData standaloneScript = { SCRIPT_NOFILE, 0 };
|
||||
uint16_t maxLuaInterval = 0;
|
||||
uint16_t maxLuaDuration = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue