Skip to content

Commit

Permalink
Emscripten: Fixed framebuffer error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Feb 13, 2015
1 parent 2bb73d1 commit 697c5c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/emscripten/SDL_emscriptenframebuffer.c
Expand Up @@ -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 */
Expand Down

0 comments on commit 697c5c5

Please sign in to comment.