Skip to content

Commit d97887c

Browse files
committed
Accidentally changed wrong dll version between 50 and 51
1 parent 805f394 commit d97887c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Lua50.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public struct lua_State : IEquatable<lua_State>
2626
public static class Lua
2727
{
2828

29-
private const string DllName = "lua515";
29+
private const string DllName = "lua503";
3030
private const CallingConvention Convention = CallingConvention.Cdecl;
3131

3232
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Ansi)]

src/Lua51.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public struct lua_State : IEquatable<lua_State>
2727
public static class Lua
2828
{
2929

30-
private const string DllName = "lua503";
30+
private const string DllName = "lua515";
3131
private const CallingConvention Convention = CallingConvention.Cdecl;
3232

3333
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Ansi)]

0 commit comments

Comments
 (0)