about summary refs log tree commit diff
path: root/src/game/client/components/countryflags.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/components/countryflags.h')
-rw-r--r--src/game/client/components/countryflags.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/client/components/countryflags.h b/src/game/client/components/countryflags.h
index b0960661..cd629094 100644
--- a/src/game/client/components/countryflags.h
+++ b/src/game/client/components/countryflags.h
@@ -13,16 +13,16 @@ public:
 	{
 		int m_CountryCode;
 		int m_Texture;
-		
+
 		bool operator<(const CCountryFlag &Other) { return m_CountryCode < Other.m_CountryCode; }
 	};
-	
+
 	void OnInit();
-	
+
 	int Num() const;
 	const CCountryFlag *Get(int Index) const;
 	int Find(int CountryCode) const;
-	
+
 private:
 	sorted_array<CCountryFlag> m_aCountryFlags;