Skip to content

Commit

Permalink
fix submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
spectrenoir06 committed May 4, 2020
1 parent b63856d commit 81f2853
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/loveframes
10 changes: 5 additions & 5 deletions main.lua
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
print(package.path)
package.path = package.path..";./lib/?.lua;./lib/?/init.lua;./lib/?/?.lua"
print(package.path)
-- love.filesystem.setRequirePath("?.lua;?/init.lua;lib/?.lua;./lib/?/init.lua")
-- print(package.path)
-- package.path = package.path..";./lib/?.lua;./lib/?/init.lua;./lib/?/?.lua"
-- print(package.path)
love.filesystem.setRequirePath("?.lua;?/init.lua;lib/?.lua;lib/?/init.lua;lib/?/?.lua")
local socket = require("socket")

local loveframes = require("loveframes")
local loveframes = require("lib.loveframes")
local LEDsController = require("LEDsController")
-- local Yeelight = require("Yeelight")
local json = require("json")
Expand Down
2 changes: 1 addition & 1 deletion thread_led_controller.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require "love.system"
require "love.image"
local socket = require("socket")

local LEDsController = require "lib.LEDsController"
local LEDsController = require("LEDsController")

local nodes = {}
local nodes_map = {}
Expand Down

0 comments on commit 81f2853

Please sign in to comment.