add libtool to macOS dependencies in README

This commit is contained in:
Inori 2019-08-31 20:11:38 -04:00
parent 0ff3a4d563
commit 94aed2b503
2 changed files with 1 additions and 10 deletions

View file

@ -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:

View file

@ -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)