Skip to content

Commit e17c6ba

Browse files
EtzosEkdohibs
authored andcommittedMay 7, 2015
Remove duplicate lua_getfield() in c_converter.cpp
Fixes #2678
1 parent b246812 commit e17c6ba

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

‎src/script/common/c_converter.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ v2f read_v2f(lua_State *L, int index)
105105
v2f p;
106106
CHECK_POS_TAB(index);
107107
lua_getfield(L, index, "x");
108-
lua_getfield(L, index, "x");
109108
p.X = lua_tonumber(L, -1);
110109
lua_pop(L, 1);
111110
lua_getfield(L, index, "y");

0 commit comments

Comments
 (0)
Please sign in to comment.