diff options
| author | Ray <raysan5@gmail.com> | 2016-11-21 00:00:27 +0100 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2016-11-21 00:00:27 +0100 |
| commit | f0626324ab1d5284f64a8a4b0c3dd2dbaeec3688 (patch) | |
| tree | a3ac3c6bddd5a4c24d60983c8237a6a3d1d316e6 /examples/rlua_execute_file.c | |
| parent | 6fa5dec16da535572b13c81ccda291a67953b558 (diff) | |
| download | raylib-f0626324ab1d5284f64a8a4b0c3dd2dbaeec3688.tar.gz raylib-f0626324ab1d5284f64a8a4b0c3dd2dbaeec3688.zip | |
rlua: Added some missing functions
Updated to raylib 1.6 functionality
Diffstat (limited to 'examples/rlua_execute_file.c')
| -rw-r--r-- | examples/rlua_execute_file.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/rlua_execute_file.c b/examples/rlua_execute_file.c index 71720313..f2d7114e 100644 --- a/examples/rlua_execute_file.c +++ b/examples/rlua_execute_file.c @@ -7,7 +7,8 @@ * Compile example using: * gcc -o $(NAME_PART).exe $(FILE_NAME) $(RAYLIB_DIR)\raylib_icon / * -I../src -I../src/external/lua/include -L../src/external/lua/lib / -* -lraylib -lglfw3 -lopengl32 -lopenal32 -llua53 -lgdi32 -std=c99 +* -lraylib -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -llua53 / +* -std=c99 -Wl,-allow-multiple-definition -Wl,--subsystem,windows * * This example has been created using raylib 1.6 (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) @@ -28,7 +29,7 @@ int main() InitLuaDevice(); //-------------------------------------------------------------------------------------- - // ExecuteLuaFile("core_basic_window.lua"); // OK! + ExecuteLuaFile("core_basic_window.lua"); // OK! // ExecuteLuaFile("core_input_keys.lua"); // OK! // ExecuteLuaFile("core_input_mouse.lua"); // OK! // ExecuteLuaFile("core_mouse_wheel.lua"); // OK! |
