mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2024-12-28 04:23:42 +01:00
Merge pull request 'Sync PR' (#3) from Slyvtt/Collab_RPG:master into master
Reviewed-on: https://gitea.planet-casio.com/Fcalva/Collab_RPG_Fcalva/pulls/3
This commit is contained in:
commit
8309b67ac6
2 changed files with 3 additions and 3 deletions
|
@ -213,11 +213,11 @@ unsigned int _i;
|
||||||
|
|
||||||
/* Get where I started drawing a dialog page, to be able to redraw the last page
|
/* Get where I started drawing a dialog page, to be able to redraw the last page
|
||||||
* for the end animation in _choice_call_before_end. */
|
* for the end animation in _choice_call_before_end. */
|
||||||
void _choice_screen_call(Game *game, unsigned int i) {
|
void _choice_screen_call( [[maybe_unused]] Game *game, unsigned int i) {
|
||||||
_i = i;
|
_i = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
int _choice_call_before_end(Game *game, unsigned int org_i) {
|
int _choice_call_before_end(Game *game, [[maybe_unused]] unsigned int org_i) {
|
||||||
int i, key;
|
int i, key;
|
||||||
/* Make a little animation because we looove little animations ;) */
|
/* Make a little animation because we looove little animations ;) */
|
||||||
for(i=0;i<DWIDTH/8+1;i++){
|
for(i=0;i<DWIDTH/8+1;i++){
|
||||||
|
|
|
@ -31,7 +31,7 @@ float length( float x, float y )
|
||||||
return sqrtf( x*x+y*y );
|
return sqrtf( x*x+y*y );
|
||||||
}
|
}
|
||||||
|
|
||||||
void update_npc(Game *game)
|
void update_npc( [[maybe_unused]] Game *game)
|
||||||
{
|
{
|
||||||
for( uint32_t u=0; u<nbNPC; u++ )
|
for( uint32_t u=0; u<nbNPC; u++ )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue