code fixes

Radiant:

binds...
	* m1x2 on clipper point = do clip
menus...
	* misc->colors->opengl font selector
misc...
	* calculate farplane from g_MaxWorldCoord, g_MinWorldCoord (was const 32768)
	* 1.0f nearplane
	* numerous code fixes
This commit is contained in:
Garux
2017-08-02 09:25:58 +03:00
parent 65ca31fd44
commit e3fd576624
68 changed files with 333 additions and 314 deletions

View File

@@ -43,13 +43,14 @@ struct filetype_copy_t
filetype_t getType() const {
return filetype_t( m_name.c_str(), m_pattern.c_str(), m_can_load, m_can_save, m_can_import );
}
bool m_can_load;
bool m_can_import;
bool m_can_save;
private:
CopiedString m_moduleName;
CopiedString m_name;
CopiedString m_pattern;
public:
bool m_can_load;
bool m_can_import;
bool m_can_save;
};
typedef std::vector<filetype_copy_t> filetype_list_t;
std::map<CopiedString, filetype_list_t> m_typelists;