From 5b960d7291c2893948448b0bb591d2acc9ed1723 Mon Sep 17 00:00:00 2001 From: MyPasswordIsWeak Date: Sat, 17 Oct 2020 21:15:06 +0200 Subject: [PATCH] Change single quotes to double quotes --- libs/discordRPC.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/discordRPC.lua b/libs/discordRPC.lua index 3e4a736..0e6a696 100644 --- a/libs/discordRPC.lua +++ b/libs/discordRPC.lua @@ -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