Skip to content

Commit a8bf190

Browse files
committed
Fix build
1 parent a0e19c9 commit a8bf190

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

include/ModelAnimation.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class ModelAnimation : public ::ModelAnimation {
3737
* Load model animations from file
3838
*/
3939
static std::vector<ModelAnimation> Load(const std::string& fileName) {
40-
unsigned int count = 0;
40+
int count = 0;
4141
::ModelAnimation* modelAnimations = ::LoadModelAnimations(fileName.c_str(), &count);
4242
std::vector<ModelAnimation> mats(modelAnimations, modelAnimations + count);
4343

include/Vector2.hpp

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -354,17 +354,6 @@ class Vector2 : public ::Vector2 {
354354
::DrawLineBezier(*this, endPos, thick, color);
355355
}
356356

357-
/**
358-
* Draw line using quadratic bezier curves with a control point.
359-
*/
360-
inline void DrawLineBezierQuad(
361-
::Vector2 endPos,
362-
::Vector2 controlPos,
363-
float thick,
364-
::Color color = {0, 0, 0, 255}) const {
365-
::DrawLineBezierQuad(*this, endPos, controlPos, thick, color);
366-
}
367-
368357
/**
369358
* Draw a color-filled circle (Vector version)
370359
*/

0 commit comments

Comments
 (0)