Add guard to gaia.scene to log error if the Gaia module was not compiled

Point to correct shader paths
Remove warnings
This commit is contained in:
Alexander Bock
2018-11-20 18:40:04 -05:00
parent 0d2935c43b
commit d37cfa4f18
9 changed files with 77 additions and 73 deletions

View File

@@ -32,7 +32,7 @@ GUIKeyboardHandler::GUIKeyboardHandler() {
_keyConsumed = false;
global::callback::keyboard.push_back(
[&](Key key, KeyModifier mod, KeyAction action) -> bool {
[&](Key, KeyModifier, KeyAction) -> bool {
const bool previous = _keyConsumed;
_keyConsumed = false;
return previous;