|
@@ -697,7 +697,8 @@ void Gs_pack_colors(const char *filename, int *buff, int rows, int cols)
|
|
|
|
|
|
cur = buff;
|
|
|
|
|
|
- G_message(_("Translating colors from raster map <%s>..."), filename);
|
|
|
+ G_message(_("Translating colors from raster map <%s>..."),
|
|
|
+ G_fully_qualified_name(filename, mapset));
|
|
|
|
|
|
for (i = 0; i < rows; i++) {
|
|
|
Rast_lookup_c_colors(cur, r, g, b, set, cols, &colrules);
|
|
@@ -768,8 +769,9 @@ void Gs_pack_colors_float(const char *filename, float *fbuf, int *ibuf,
|
|
|
fcur = fbuf;
|
|
|
icur = ibuf;
|
|
|
|
|
|
- G_message(_("Translating colors from raster map <%s>..."), filename);
|
|
|
-
|
|
|
+ G_message(_("Translating colors from raster map <%s>..."),
|
|
|
+ G_fully_qualified_name(filename, mapset));
|
|
|
+
|
|
|
for (i = 0; i < rows; i++) {
|
|
|
Rast_lookup_f_colors(fcur, r, g, b, set, cols, &colrules);
|
|
|
G_percent(i, rows, 2);
|