Emscripten: Fixed framebuffer error message.

This commit is contained in:
Philipp Wiesemann 2015-02-14 00:10:58 +01:00
parent 2bb73d170c
commit 697c5c5758

View File

@ -63,7 +63,7 @@ int Emscripten_UpdateWindowFramebuffer(_THIS, SDL_Window * window, const SDL_Rec
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
surface = data->surface;
if (!surface) {
return SDL_SetError("Couldn't find dummy surface for window");
return SDL_SetError("Couldn't find framebuffer surface for window");
}
/* Send the data to the display */