[General]: Remove unused macro (#954)

This commit is contained in:
Edo 2023-04-20 14:11:13 +02:00 committed by GitHub
parent 1c29eaf229
commit 6b0f6cc395
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View File

@ -74,8 +74,7 @@ namespace Components
Game::dvar_t* Branding::Dvar_RegisterUIBuildLocation(const char* dvarName, [[maybe_unused]] float x,
[[maybe_unused]] float y, float min, float max, [[maybe_unused]] int flags, const char* description)
{
return Game::Dvar_RegisterVec2(dvarName, -60.0f,
474.0f, min, max, Game::DVAR_ROM, description);
return Game::Dvar_RegisterVec2(dvarName, -60.0f, 472.0f, min, max, Game::DVAR_ROM, description);
}
void Branding::RegisterBrandingDvars()

View File

@ -1,8 +1,5 @@
#pragma once
// This enables version filtering
#define VERSION_FILTER
namespace Components
{
class ServerList : public Component