2013-11-06 09:18 AM - last edited on 2023-08-01 06:57 PM by Doreena Deng
navi_map_id = API_PublisherSets; //... set.mapId = navi_map_id; set.wantsExtraInfo = (navi_map_id == API_PublisherSets) ? 1 : 0; DBPrintf("1 - set.mapId: %d (%d)", set.mapId, navi_map_id); err = ACAPI_Environment(APIEnv_GetNavigatorSetID, &set, &i); DBPrintf("2 - set.mapId: %d (%d)", set.mapId, navi_map_id);And here is the output:
1 - set.mapId: 5 (5) 2 - set.mapId: 0 (5)As you can see, the value of set.mapId was reset to 0.
2013-11-13 05:25 PM
2013-12-11 09:23 AM
Tibor wrote:I am not changing the
Why do you want to change the mapId?
2013-12-13 01:13 PM