mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-19 03:57:14 +01:00
Compare commits
No commits in common. "d879999aeb6906daa87125ed975344bfadd6a120" and "f4c2665e86c2ebf77cf769d5e3faa80304d817ed" have entirely different histories.
d879999aeb
...
f4c2665e86
@ -886,7 +886,7 @@ void SQLiteConnection::TraceOutput(void * /*ptr*/, const char * sql)
|
||||
// ------------------------------------------------------------------------------------------------
|
||||
void SQLiteConnection::ProfileOutput(void * /*ptr*/, const char * sql, sqlite3_uint64 time)
|
||||
{
|
||||
LogInf("SQLite profile (time: %llu): %s", time, sql);
|
||||
LogInf("SQLite profile (time: %" PRINT_UINT_FMT "): %s", time, sql);
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------------------------------
|
||||
|
@ -1380,7 +1380,7 @@ static bool LgUsingClasses()
|
||||
{ return _Func->GetServerOption(vcmpServerOptionUseClasses) >= 1; }
|
||||
static void LgAddClass(int team, const Color3 & col, int skin, const Vector3 & pos, float angle,
|
||||
int wep1, int ammo1, int wep2, int ammo2, int wep3, int ammo3)
|
||||
{ _Func->AddPlayerClass(team, col.GetRGB(), skin, pos.x, pos.y, pos.z, angle, wep1, ammo1, wep2, ammo2, wep3, ammo3); }
|
||||
{ _Func->AddPlayerClass(team, col.GetRGBA(), skin, pos.x, pos.y, pos.z, angle, wep1, ammo1, wep2, ammo2, wep3, ammo3); }
|
||||
// ------------------------------------------------------------------------------------------------
|
||||
static void LgSetSpawnPlayerPos(const Vector3 & pos) { _Func->SetSpawnPlayerPosition(pos.x, pos.y, pos.z); }
|
||||
static void LgSetSpawnCameraPos(const Vector3 & pos) { _Func->SetSpawnCameraPosition(pos.x, pos.y, pos.z); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user