Had forgotten to change numstamps counter when swapping which location
loaded first.
This commit is contained in:
parent
028f68ae31
commit
ac1e2a7138
1 changed files with 4 additions and 4 deletions
|
|
@ -4897,11 +4897,11 @@ void setup(int argc, char * argv[])
|
|||
#ifndef NOSOUND
|
||||
loadarbitrary(img_stamps, img_stamps_premirror,
|
||||
txt_stamps, inf_stamps, snd_stamps,
|
||||
&num_stamps, num_stamps,
|
||||
&num_stamps, 0,
|
||||
MAX_STAMPS, homedirdir, 0, -1, -1);
|
||||
#else
|
||||
loadarbitrary(img_stamps, img_stamps_premirror,
|
||||
txt_stamps, inf_stamps, &num_stamps, num_stamps,
|
||||
txt_stamps, inf_stamps, &num_stamps, 0,
|
||||
MAX_STAMPS, homedirdir, 0, -1, -1);
|
||||
#endif
|
||||
|
||||
|
|
@ -4909,11 +4909,11 @@ void setup(int argc, char * argv[])
|
|||
#ifndef NOSOUND
|
||||
loadarbitrary(img_stamps, img_stamps_premirror,
|
||||
txt_stamps, inf_stamps, snd_stamps, &num_stamps,
|
||||
0, MAX_STAMPS, DATA_PREFIX "stamps", 0, -1, -1);
|
||||
num_stamps, MAX_STAMPS, DATA_PREFIX "stamps", 0, -1, -1);
|
||||
#else
|
||||
loadarbitrary(img_stamps, img_stamps_premirror,
|
||||
txt_stamps, inf_stamps, &num_stamps,
|
||||
0, MAX_STAMPS, DATA_PREFIX "stamps", 0, -1, -1);
|
||||
num_stamps, MAX_STAMPS, DATA_PREFIX "stamps", 0, -1, -1);
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue