Quiet warnings for picky compilers.
This commit is contained in:
@@ -4140,7 +4140,7 @@ void param_construct_end(ParamHandle *handle, ParamBool fill, ParamBool impl)
|
||||
|
||||
param_assert(phandle->state == PHANDLE_STATE_ALLOCATED);
|
||||
|
||||
phandle->ncharts = p_connect_pairs(phandle, impl);
|
||||
phandle->ncharts = p_connect_pairs(phandle, (PBool)impl);
|
||||
phandle->charts = p_split_charts(phandle, chart, phandle->ncharts);
|
||||
|
||||
p_chart_delete(phandle->construction_chart);
|
||||
@@ -4189,7 +4189,7 @@ void param_lscm_begin(ParamHandle *handle, ParamBool live, ParamBool abf)
|
||||
for (i = 0; i < phandle->ncharts; i++) {
|
||||
for (f=phandle->charts[i]->faces; f; f=f->nextlink)
|
||||
p_face_backup_uvs(f);
|
||||
p_chart_lscm_begin(phandle->charts[i], live, abf);
|
||||
p_chart_lscm_begin(phandle->charts[i], (PBool)live, (PBool)abf);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user