Skip to content

Commit

Permalink
Fix data file reference in editor
Browse files Browse the repository at this point in the history
  • Loading branch information
lheckemann committed Jun 18, 2017
1 parent 4010a34 commit 227f30f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/items_editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ int loadItems()
FILE* fp;
// load item types
printlog("loading items...\n");
fp = fopen("items/items.txt", "r");
fp = openDataFile("items/items.txt", "r");
for ( c = 0; !feof(fp); c++ )
{
items[c].name_identified = language[1545 + c * 2];
Expand Down

0 comments on commit 227f30f

Please sign in to comment.