mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-03 09:17:47 +00:00
compiler warning fix
This commit is contained in:
parent
a36282a7fa
commit
bebde300f1
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ void Core::Network::GameConnection::actionHandler( const Packets::GamePacket& in
|
|||
}
|
||||
case 0x12E: // Set player title
|
||||
{
|
||||
pPlayer->setTitle( param1 );
|
||||
pPlayer->setTitle( static_cast< uint16_t >( param1 ) );
|
||||
break;
|
||||
}
|
||||
case 0x12F: // Get title list
|
||||
|
|
Loading…
Add table
Reference in a new issue