Change single quotes to double quotes

pull/3/head
MyPasswordIsWeak 2020-10-17 21:15:06 +02:00
parent 54f4b0b890
commit 5b960d7291
1 changed files with 4 additions and 4 deletions

View File

@ -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