summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/game.cpp4
-rw-r--r--src/graphic/graphic.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/game.cpp b/src/game.cpp
index e4fd0dff..34068053 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -411,11 +411,11 @@ void do_parse() {
}
fclose(file);
*/
-//#ifdef DEBUG
+#ifdef DEBUG
FILE *file = fopen("./docs/packet.list", "a");
fprintf(file, "%x\n", RFIFOW(0));
fclose(file);
-//#endif
+#endif
// Parse packet based on their id
switch (id) {
// Received speech
diff --git a/src/graphic/graphic.cpp b/src/graphic/graphic.cpp
index 835698b4..3887addb 100644
--- a/src/graphic/graphic.cpp
+++ b/src/graphic/graphic.cpp
@@ -290,7 +290,7 @@ Engine::Engine()
minimap = new Minimap();
equipmentWindow = new EquipmentWindow();
- equipmentWindow->setVisible(true);
+ equipmentWindow->setVisible(false);
// Give focus to the chat input
chatInput->requestFocus();