]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/tank.cpp
Se agrega la consante INFINITO pendiente desde el primer commit :-)
[z.facultad/75.42/plaqui.git] / Model / src / tank.cpp
index a557c0b5cf83b8094bf7951867ede32ae4e8bd44..0a83de3c5ad1ed1047683f75f533c79a14c57bbb 100644 (file)
@@ -67,7 +67,7 @@ void Tank::recieve_msg(int msg, IConector *who, void *data)
                        actual_in_flow = capacity - litros;
                        if (*((float *)data) < actual_in_flow)
                                actual_in_flow = *((float *)data);
-                       actual_out_flow = litros;
+                       actual_flow = actual_out_flow = litros;
                        updated = true;
                        send_msg(OUT, MSG_QUERY_MAX_FLOW_OUT, &actual_out_flow);
 
@@ -76,7 +76,7 @@ void Tank::recieve_msg(int msg, IConector *who, void *data)
                case MSG_RESPONSE_MAX_FLOW:
                        if (pos == OUT) {
                                if (*((float *)data) < actual_out_flow)
-                                       actual_out_flow = *((float *)data);
+                                       actual_flow = actual_out_flow = *((float *)data);
                        }
                break;
                case MSG_RESPONSE_COLOR: