summaryrefslogtreecommitdiffstats
path: root/source/cSignEntity.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/cSignEntity.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/source/cSignEntity.cpp b/source/cSignEntity.cpp
index ca21d847b..cf0a13650 100644
--- a/source/cSignEntity.cpp
+++ b/source/cSignEntity.cpp
@@ -104,32 +104,6 @@ cPacket * cSignEntity::GetPacket(void)
return false; \
}
-bool cSignEntity::LoadFromFile(cFile & f)
-{
- READ(f, m_PosX);
- READ(f, m_PosY);
- READ(f, m_PosZ);
-
- for( int i = 0; i < 4; i++ )
- {
- short Size = 0;
- READ(f, Size);
- if (Size > 0)
- {
- char * c_Str = new char[Size];
- if (f.Read(c_Str, Size) != Size )
- {
- LOGERROR("ERROR READING SIGN FROM FILE");
- delete [] c_Str;
- return false;
- }
- m_Line[i].assign( c_Str, Size );
- delete [] c_Str;
- }
- }
-
- return true;
-}