ALL: unify setupScreen() arguments type

This commit is contained in:
Pawel Kolodziejski 2014-07-19 19:42:01 +02:00
parent 230fb47de4
commit c14d0ad8dc
8 changed files with 9 additions and 9 deletions

View file

@ -104,7 +104,7 @@ void ModularBackend::launcherInitSize(uint w, uint h) {
}
// ResidualVM specific method
Graphics::PixelBuffer ModularBackend::setupScreen(int screenW, int screenH, bool fullscreen, bool accel3d) {
Graphics::PixelBuffer ModularBackend::setupScreen(uint screenW, uint screenH, bool fullscreen, bool accel3d) {
return _graphicsManager->setupScreen(screenW, screenH, fullscreen, accel3d);
}