Skip to content

Commit

Permalink
Version 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
actsl committed Jun 20, 2016
1 parent 107f79d commit ca3e7e2
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ Michael Bethke (https://github.com/AVividLight), shuttersparks.
VERSION
=======

1.0.6
1.0.8


LICENSE
Expand Down
8 changes: 4 additions & 4 deletions kiss_draw.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
3. This notice may not be removed or altered from any source
distribution.
kiss_sdl version 1.0.6
kiss_sdl version 1.0.8
*/

#include "kiss_sdl.h"
Expand Down Expand Up @@ -184,8 +184,6 @@ SDL_Renderer* kiss_init(char* title, kiss_array *a, int w, int h)
renderer = SDL_CreateRenderer(window, -1,
SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC);
kiss_array_new(a);
kiss_array_append(a, WINDOW_TYPE, window);
kiss_array_append(a, RENDERER_TYPE, renderer);
font_new(&kiss_textfont, "kiss_font.ttf", a, kiss_textfont_size);
font_new(&kiss_buttonfont, "kiss_font.ttf", a, kiss_buttonfont_size);
image_new(&kiss_normal, "kiss_normal.png", a, renderer);
Expand All @@ -200,6 +198,8 @@ SDL_Renderer* kiss_init(char* title, kiss_array *a, int w, int h)
image_new(&kiss_right, "kiss_right.png", a, renderer);
image_new(&kiss_selected, "kiss_selected.png", a, renderer);
image_new(&kiss_unselected, "kiss_unselected.png", a, renderer);
kiss_array_append(a, RENDERER_TYPE, renderer);
kiss_array_append(a, WINDOW_TYPE, window);
return renderer;
}

Expand Down Expand Up @@ -230,8 +230,8 @@ int kiss_clean(kiss_array *a)
}
a->length = 0;
kiss_array_free(a);
IMG_Quit();
TTF_Quit();
IMG_Quit();
SDL_Quit();
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion kiss_example1.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
3. This notice may not be removed or altered from any source
distribution.
kiss_sdl version 1.0.6
kiss_sdl version 1.0.8
*/

#include "kiss_sdl.h"
Expand Down
2 changes: 1 addition & 1 deletion kiss_example2.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
3. This notice may not be removed or altered from any source
distribution.
kiss_sdl version 1.0.6
kiss_sdl version 1.0.8
*/

#include "kiss_sdl.h"
Expand Down
2 changes: 1 addition & 1 deletion kiss_general.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
3. This notice may not be removed or altered from any source
distribution.
kiss_sdl version 1.0.6
kiss_sdl version 1.0.8
*/

#include "kiss_sdl.h"
Expand Down
Binary file modified kiss_manual.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion kiss_posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
3. This notice may not be removed or altered from any source
distribution.
kiss_sdl version 1.0.6
kiss_sdl version 1.0.8
*/

#include "kiss_sdl.h"
Expand Down
2 changes: 1 addition & 1 deletion kiss_sdl.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
3. This notice may not be removed or altered from any source
distribution.
kiss_sdl version 1.0.6
kiss_sdl version 1.0.8
*/

#ifndef _kiss_sdl_h
Expand Down
2 changes: 1 addition & 1 deletion kiss_widgets.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
3. This notice may not be removed or altered from any source
distribution.
kiss_sdl version 1.0.6
kiss_sdl version 1.0.8
*/

#include "kiss_sdl.h"
Expand Down

0 comments on commit ca3e7e2

Please sign in to comment.