Skip to content

Commit

Permalink
Fixed LICENSE misspell.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Simo committed Dec 27, 2014
1 parent 96b4119 commit c5b6bfb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 19 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014 pavelsimo
Copyright (c) 2014 Pavel Simó

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
26 changes: 13 additions & 13 deletions src/Drawing.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,22 +67,22 @@ void DrawCircle(
);

void DrawTexture(
GLfloat x, GLfloat y,
GLuint texId,
GLuint imgWidth, GLuint imgHeight,
GLuint texWidth, GLuint texHeight,
Rect* clip = NULL,
GLfloat scale = 1.0
GLfloat x, GLfloat y,
GLuint texId,
GLuint imgWidth, GLuint imgHeight,
GLuint texWidth, GLuint texHeight,
Rect* clip = NULL,
GLfloat scale = 1.0
);

void DrawText(
GLfloat x, GLfloat y,
const std::string &text,
BitmapFont* font,
GLfloat scale = 1.0,
GLfloat glyphOffset = 3,
GLfloat spaceOffset = 32,
GLfloat lineSeparatorOffset = 100
GLfloat x, GLfloat y,
const std::string &text,
BitmapFont* font,
GLfloat scale = 1.0,
GLfloat glyphOffset = 3,
GLfloat spaceOffset = 32,
GLfloat lineSeparatorOffset = 100
);

#endif // __DRAWING_H_
1 change: 0 additions & 1 deletion src/Game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ void Game::HandleEvent(SDL_Event &event)
}
}


void Game::Cleanup()
{
OnCleanup();
Expand Down
4 changes: 0 additions & 4 deletions src/Game.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,6 @@ class Game
uint32_t m_height;
uint32_t m_framesPerSecond;
uint32_t m_timePerFrame;

//
// SDL
//
SDL_Window* m_window;
SDL_GLContext m_glContext;
};
Expand Down

0 comments on commit c5b6bfb

Please sign in to comment.