Compare commits
2 Commits
aafa3d5646
...
ebef3a9d46
| Author | SHA1 | Date | |
|---|---|---|---|
| ebef3a9d46 | |||
| 8b213ba2df |
2
Makefile
2
Makefile
@@ -119,7 +119,7 @@ print-variables:
|
||||
|
||||
raspi:
|
||||
$(CXX) $(SOURCES) -D RASPI $(CXXFLAGS) -lSDL2 -o $(TARGET_FILE)
|
||||
strip -s -R .comment -R .gnu.version "$(TARGET_FILE)_debug" --strip-unneeded
|
||||
strip -s -R .comment -R .gnu.version $(TARGET_FILE) --strip-unneeded
|
||||
|
||||
windows:
|
||||
@echo off
|
||||
|
||||
@@ -86,8 +86,11 @@ Director::~Director()
|
||||
void Director::initInput()
|
||||
{
|
||||
// Establece si ha de mostrar mensajes
|
||||
#ifndef RASPI
|
||||
input->setVerbose(options->console);
|
||||
|
||||
#else
|
||||
input->setVerbose(true);
|
||||
#endif
|
||||
// Busca si hay un mando conectado
|
||||
input->discoverGameController();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user