If PRINTOUTTILESET is TRUE, also print out the room number when pressing 'f'.

git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@8521 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
Flugente
2018-02-17 19:32:10 +00:00
parent 876b8f2502
commit ee73811cfe
+9
View File
@@ -3420,6 +3420,15 @@ void GetKeyboardInput( UINT32 *puiNewEvent )
}
}
}
extern BOOLEAN InARoom( INT32 sGridNo, UINT16 *pusRoomNo );
UINT16 usRoom;
if ( InARoom( usGridNo, &usRoom ) )
{
swprintf( zOutputString, L"Room number: %d", usRoom );
ScreenMsg( FONT_MCOLOR_LTGREEN, MSG_INTERFACE, zOutputString );
}
}
}
}