Japanese docs HTML->TXT forbidden wordwraps; sync MAGIC-API

This commit is contained in:
Bill Kendrick 2023-07-17 23:52:23 -07:00
parent bf1b90e279
commit 25a423f164
21 changed files with 349 additions and 211 deletions

View file

@ -102,7 +102,7 @@
</p>
<p>
Abril 13, 2023 </p>
Xullo 17, 2023 </p>
</center>
</header>
@ -1066,7 +1066,7 @@
Create arrays of "<code>NUM_TOOLS</code>" length to contain effect-specific data. <blockquote><code>
char * my_plugin_snd_filenames[NUM_TOOLS] = {<br>
&nbsp;&nbsp;&nbsp;&nbsp;"one.ogg", "another.ogg", "yet_another.ogg" };<br>
Mix_Chunk * my_plugin_snds[NUM_TOOLS]") ?>;
Mix_Chunk * my_plugin_snds[NUM_TOOLS]");
</code></blockquote>
</li>
@ -1080,7 +1080,7 @@
&nbsp;&nbsp;&nbsp;&nbsp;/* Becomes, for example, "/usr/share/tuxpaint/sounds/magic/one.ogg" */<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;snprintf(fname, sizeof(fname), "%s/sounds/magic/%<!-- -->s",<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;api->data_prefix, my_plugin_snd_filenames[i]);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;api-&gt;data_prefix, my_plugin_snd_filenames[i]);<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;my_plugin_snds[i] = Mix_LoadWAV(fname);<br>
}