Browse Source

Fix GCC warning in inv.cpp

pull/2283/head
Anders Jenbo 5 years ago
parent
commit
50aa3dce0d
  1. 2
      Source/inv.cpp

2
Source/inv.cpp

@ -943,6 +943,8 @@ void CheckInvPaste(int pnum, Point cursorPosition)
return INVLOC_AMULET;
case ILOC_ARMOR:
return INVLOC_CHEST;
default:
app_fatal("Unexpected equipment type");
}
};
inv_body_loc slot = iLocToInvLoc(il);

Loading…
Cancel
Save