File diff r2139:6871d2a8acac → r2140:efb49af98a17
settings_gui.c
Show inline comments
 
@@ -1019,16 +1019,16 @@ static void PatchesSelectionWndProc(Wind
 

	
 
/** Network-safe changing of patch-settings.
 
 * @param p1 various bitstuffed elements
 
 * - p1 = (bit 0- 7) - the patches type (page) that is being changed (construction, network, ai) (p1 & 0xFF)
 
 * - p2 = (bit 8-15) - the actual patch (entry) being set inside the category ((p1>>8) & 0xFF)
 
 * - p1 = (bit 0- 7) - the patches type (page) that is being changed (construction, network, ai)
 
 * - p2 = (bit 8-15) - the actual patch (entry) being set inside the category
 
 * @param p2 the new value for the patch
 
 * @todo check that the new value is a valid one. Awful lot of work, but since only
 
 * the server is allowed to do this, we trust it on this one :)
 
 */
 
int32 CmdChangePatchSetting(int x, int y, uint32 flags, uint32 p1, uint32 p2)
 
{
 
	byte pcat = p1 & 0xFF;
 
	byte pel = (p1 >> 8) & 0xFF;
 
	byte pcat = GB(p1, 0, 8);
 
	byte pel  = GB(p1, 8, 8);
 

	
 
	if (pcat >= lengthof(_patches_page)) return CMD_ERROR;
 
	if (pel >= _patches_page[pcat].num) return CMD_ERROR;