From 94aed2b503ff96678f877f214b56625973c2099f Mon Sep 17 00:00:00 2001 From: Inori Date: Sat, 31 Aug 2019 20:11:38 -0400 Subject: [PATCH] add libtool to macOS dependencies in README --- README.md | 2 +- src/graphics.cpp | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) 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)