Minor change

This commit is contained in:
Joshua Granick
2015-07-31 20:51:59 -07:00
parent ef9263abe1
commit 28321ddc58
6 changed files with 25 additions and 24 deletions

View File

@@ -1159,6 +1159,7 @@ namespace lime {
}
value lime_window_set_title (value window, value title) {
Window* targetWindow = (Window*)(intptr_t)val_float (window);

View File

@@ -247,9 +247,10 @@ namespace lime {
}
const char* SDLWindow::SetTitle (const char* title) {
SDL_SetWindowTitle(sdlWindow, title);
SDL_SetWindowTitle (sdlWindow, title);
return title;