Comic Dots: Return proper order
There are two tools, so can't use the same number twice!
This commit is contained in:
parent
dbbc8df6c2
commit
81ae8bdd36
1 changed files with 3 additions and 3 deletions
|
|
@ -22,7 +22,7 @@
|
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
(See COPYING.txt)
|
||||
|
||||
Last updated: September 17, 2024
|
||||
Last updated: September 23, 2024
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
@ -139,9 +139,9 @@ int comicdot_get_group(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNU
|
|||
return MAGIC_TYPE_PAINTING;
|
||||
}
|
||||
|
||||
int comicdot_get_order(int which ATTRIBUTE_UNUSED)
|
||||
int comicdot_get_order(int which)
|
||||
{
|
||||
return 1910;
|
||||
return 1910 + which;
|
||||
}
|
||||
|
||||
char *comicdot_get_description(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue