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