mirror of
https://github.com/SashLilac/cambridge.git
synced 2024-11-22 12:09:03 -06:00
Change single quotes to double quotes
This commit is contained in:
parent
54f4b0b890
commit
5b960d7291
@ -6,16 +6,16 @@ local os = love.system.getOS()
|
||||
local discordRPClib = nil
|
||||
|
||||
|
||||
if os == 'Linux' then
|
||||
if os == "Linux" then
|
||||
discordRPClib = ffi.load(love.filesystem.getSource().."/libs/discord-rpc.so")
|
||||
elseif os == 'OS X' then
|
||||
elseif os == "OS X" then
|
||||
discordRPClib = ffi.load(love.filesystem.getSource().."/libs/discord-rpc.dylib")
|
||||
elseif os == 'Windows' then
|
||||
elseif os == "Windows" then
|
||||
discordRPClib = ffi.load(love.filesystem.getSource().."/libs/discord-rpc.dll")
|
||||
else
|
||||
-- Else it crashes later on
|
||||
discordRPClib = ffi.load(love.filesystem.getSource().."/libs/discord-rpc.e")
|
||||
print('Discord rpc not supported on platform')
|
||||
print("Discord rpc not supported on platform")
|
||||
end
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user