diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-12 20:34:14 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-12 20:34:14 +0300 |
commit | 58f80ebffbb354357e2650a41e233f54df3e376d (patch) | |
tree | fed81da51123c030cc6967aec893d52d34e153e0 /src | |
parent | e81a52407a6c2286e0bf22b6fb111314340ae3be (diff) | |
download | plus-58f80ebffbb354357e2650a41e233f54df3e376d.tar.gz plus-58f80ebffbb354357e2650a41e233f54df3e376d.tar.bz2 plus-58f80ebffbb354357e2650a41e233f54df3e376d.tar.xz plus-58f80ebffbb354357e2650a41e233f54df3e376d.zip |
fix compilation warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/render/graphics.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/render/graphics.cpp b/src/render/graphics.cpp index b33b9edcd..107573d1b 100644 --- a/src/render/graphics.cpp +++ b/src/render/graphics.cpp @@ -585,7 +585,8 @@ bool Graphics::calcImageRect(ImageVertexes *const vert, return 0; } -void Graphics::setWindowSize(const int width, const int height) +void Graphics::setWindowSize(const int width A_UNUSED, + const int height A_UNUSED) { #ifdef USE_SDL2 SDL_SetWindowSize(mWindow, width, height); |