summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugenio Favalli <elvenprogrammer@gmail.com>2005-02-13 20:30:01 +0000
committerEugenio Favalli <elvenprogrammer@gmail.com>2005-02-13 20:30:01 +0000
commitfb6fa0f35843e437c3171de39920ce5e42e28817 (patch)
tree7de037801b0eb15d62d8e885aeafb2b7b997252d
parent0e741d32b8d6daa2914a35efed1c742ad880525a (diff)
downloadmana-client-fb6fa0f35843e437c3171de39920ce5e42e28817.tar.gz
mana-client-fb6fa0f35843e437c3171de39920ce5e42e28817.tar.bz2
mana-client-fb6fa0f35843e437c3171de39920ce5e42e28817.tar.xz
mana-client-fb6fa0f35843e437c3171de39920ce5e42e28817.zip
Some fixes and item updates
-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();