- Timestamp:
- Apr 12, 2018, 4:16:02 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ScriptableController_FS18/src/orxonox/scriptablecontroller/scriptable_controller.cc
r11854 r11861 14 14 int ret; 15 15 16 // Not having a script specified at all is not an error 17 if(file_path.empty()) 16 // Not having a script specified at all is not an error. 17 if(file_path.empty()){ 18 orxout(internal_warning) << "No script specified!" << std::endl; 18 19 return 0; 20 } 19 21 20 22 // Create a lua object … … 26 28 } 27 29 28 // Make standard libraries available in the Lua object 30 // Make standard libraries available in the Lua object. 29 31 luaL_openlibs(lua); 30 32
Note: See TracChangeset
for help on using the changeset viewer.