aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/smelt.hpp3
-rw-r--r--include/smttfont.hpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/include/smelt.hpp b/include/smelt.hpp
index 3894e34..40bc52f 100644
--- a/include/smelt.hpp
+++ b/include/smelt.hpp
@@ -22,7 +22,7 @@
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with Foobar. If not, see <http://www.gnu.org/licenses/>.
+ * along with SMELT. If not, see <http://www.gnu.org/licenses/>.
*
*/
@@ -362,6 +362,7 @@ public:
virtual void smRenderQuad(smQuad *q)=0;
virtual smVertex* smGetVertArray()=0;
virtual void smDrawVertArray(int prim,SMTEX texture,int blend,int _primcnt)=0;
+ virtual void smDrawCustomIndexedVertices(smVertex* vb,WORD* ib,int vbc,int ibc,int blend,SMTEX texture)=0;
virtual SMTRG smTargetCreate(int w,int h)=0;
virtual SMTEX smTargetTexture(SMTRG targ)=0;
diff --git a/include/smttfont.hpp b/include/smttfont.hpp
index 777d8ed..0f87b1c 100644
--- a/include/smttfont.hpp
+++ b/include/smttfont.hpp
@@ -42,7 +42,7 @@ protected:
FT_Library ftlib;
FT_Face ttface;
private:
- wchar_t buf[1024];
+ wchar_t buf[1025];
std::map<wchar_t,smTTChar> chars;
float w,h;
public: