diff --git a/README.md b/README.md index 6eea5a86..950ae1eb 100644 --- a/README.md +++ b/README.md @@ -221,7 +221,7 @@ You'll find your stuff under your MSYS home directory. You can also type `explor ```sh brew install meson cmake automake autoconf sdl2 sdl2_{image,ttf} \ -boost pixman physfs libsigc++ libvorbis fluidsynth pkgconfig +boost pixman physfs libsigc++ libvorbis fluidsynth pkgconfig libtool ``` 3. Build the rest from source: diff --git a/src/graphics.cpp b/src/graphics.cpp index b4acc81c..2169aff9 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -952,15 +952,6 @@ void Graphics::resizeScreen(int width, int height) p->screenQuad.setTexPosRect(screenRect, screenRect); shState->eThread().requestWindowResize(width, height); - - int cur_sz = p->scSize.x; - - // Give things a little time to recalculate before continuing - for (int i = 0; i < p->frameRate; i++) - { - if (cur_sz != p->scSize.x) break; - update(); - } } void Graphics::playMovie(const char *filename)