Skip to content
Snippets Groups Projects
Commit 0df2b001 authored by Aaron's avatar Aaron
Browse files

Fixed a casting issue in slopBed.

parent 5267c14a
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ void BedSlop::SlopBed() {
while (bedStatus != BED_INVALID) {
if (bedStatus == BED_VALID) {
if (_fractional == false) {
AddSlop(bedEntry, _leftSlop, _rightSlop);
AddSlop(bedEntry, (int) _leftSlop, (int) _rightSlop);
}
else {
int leftSlop = (int) (_leftSlop * bedEntry.size());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment